Part 1 – Fraction Class Declare two private integer instance variables to hold the numerator and denominator . | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

Part 1 – Fraction Class Declare two private integer instance variables to hold the numerator and denominator .

7th Nov 2019, 3:43 PM
Avilasha Trivedi
Avilasha Trivedi - avatar
2 Respuestas
+ 1
Well the access modifier is private. The datatype used is int. private int numer; private int denom;
7th Nov 2019, 3:47 PM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar
+ 1
public class Fraction{ private int numerator; private int denominator; } Is that all you are looking for?
7th Nov 2019, 4:02 PM
Avinesh
Avinesh - avatar