Calculating marks by using java program
If a marks obtained by a student in 5 different subject are input through the keyboard. Find out the total marks and percentage obtained by a student ————————————— import java.util.Scanner; public class StudentMarks { public static void main(String[] args) { Scanner sc = new Scanner(System.in); // Array to store marks of 5 subjects int[] marks […]