-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathif.java
More file actions
60 lines (51 loc) · 1.3 KB
/
Copy pathif.java
File metadata and controls
60 lines (51 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// import java.util.Scanner;
// public class If
// {
// public static void main(String[]args)
// {
// Scanner sc = new Scanner(System.in);
// System.out.println("Enter Your Number");
// int num = sc.nextInt();
// if(num % 2 == 0)
// {
// System.out.println("Number is Even");
// }
// else{
// System.out.println("Number Is odd");
// }
// // int age = sc.nextInt();
// // if(age>=18)
// // {
// // System.out.println("Eligible to vote");
// // }
// // else{
// // System.out.println("not Eligible to vote");
// }
// }
// // )
import java.util.Scanner;
public class If
{
public static void main(String[]args)
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter Your MArks");
int marks = sc.nextInt();
if(marks>=90)
{
System.out.println("Grade A");
}
else if(marks>=70)
{
System.out.println("Grade B");
}
else if(marks>=50)
{
System.out.println("Grade C");
}
else
{
System.out.println("Fail");
}
}
}