Part 1 – Fraction Class Declare two private integer instance variables to hold the numerator and denominator . | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 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 Réponses
+ 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