Skip to content

Commit c2af867

Browse files
authored
Java Program - Calculate Average Marks
Calculate Average Marks of five Subjects
1 parent c75ea69 commit c2af867

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

Test21_Average_mark_calculate.java

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
package com.test.Basic_Java_Programs;
2+
3+
import java.util.Scanner;
4+
5+
public class Test21_Average_mark_calculate {
6+
public static void main(String[] args)
7+
{
8+
int a, b, c, d, e;
9+
10+
System.out.print("Enter Marks of Five Subjects : ");
11+
12+
Scanner sc = new Scanner(System.in);
13+
14+
a = sc.nextInt();
15+
b = sc.nextInt();
16+
c = sc.nextInt();
17+
d = sc.nextInt();
18+
e = sc.nextInt();
19+
20+
int sum = a + b + c + d + e;
21+
22+
System.out.print("Total marks "+ sum);
23+
24+
double avg = sum/5.0;
25+
26+
System.out.println("Average Marks : " + avg);
27+
}
28+
29+
}
30+
31+
32+
// Output:
33+
34+
/*
35+
36+
Enter Marks of Five Subjects : 98
37+
91
38+
93
39+
87
40+
95
41+
Total marks 464Average Marks : 92.8
42+
43+
44+
*/

0 commit comments

Comments
 (0)