9.WAP to calculate the scholarship earned by Sathak who gets Rs. 800 per month for 5 years IN JAVA ONLY.
Answers
Answered by
33
public class Earn{
public static void main (String [ ] args){
int i = 800;
long total;
total = 800 * 12 * 5;
System.out.println ("Sathak earned: " +total);
System.out.println ("Plz mark brainliest");
}
}
OUTPUT
Sathak earned : 48000
Plz mark brainliest
Thanks
public static void main (String [ ] args){
int i = 800;
long total;
total = 800 * 12 * 5;
System.out.println ("Sathak earned: " +total);
System.out.println ("Plz mark brainliest");
}
}
OUTPUT
Sathak earned : 48000
Plz mark brainliest
Thanks
Answered by
23
Please mark it as brainliest.
Attachments:
Similar questions
Math,
7 months ago
Social Sciences,
7 months ago
Biology,
7 months ago
Computer Science,
1 year ago
Math,
1 year ago
English,
1 year ago