Question: import java.util.Scanner; public class studentMarks { final static int TOTAL_MARKS = 400; public static void main(String[] args) { Scanner in = new Scanner(System.in); int mathMrks;

import java.util.Scanner;

public class studentMarks { final static int TOTAL_MARKS = 400;

public static void main(String[] args) { Scanner in = new Scanner(System.in);

int mathMrks; int compMrks; int hindiMrks; int sstMrks; String stdntName; System.out.println("ENTER YOUR NAME: "); stdntName = in.next(); System.out.println("ENTER YOUR MATHS MARKS: "); mathMrks = in.nextInt(); System.out.println("ENTER YOUR COMPUTER MARKS: "); compMrks = in.nextInt(); System.out.println("ENTER YOUR HINDI MARKS: "); hindiMrks = in.nextInt(); System.out.println("ENTER YOUR SST MARKS: "); sstMrks = in.nextInt(); double totalPercentage = ((mathMrks + compMrks + hindiMrks + sstMrks ) / TOTAL_MARKS) * 100 ; System.out.println("YOUR TOTAL PERCENTAGE IS: " + totalPercentage + "%"); }

}

my percentage is coming 0 everytime can you tell me where im wrong?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!