We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c75ea69 commit c2af867Copy full SHA for c2af867
Test21_Average_mark_calculate.java
@@ -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