-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path15.2 Number Game.java
More file actions
56 lines (40 loc) · 1.15 KB
/
15.2 Number Game.java
File metadata and controls
56 lines (40 loc) · 1.15 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
/*
Neha and Nisha are playing a game .Nisha ask Neha to enter the number N from given range of 0 to 99 .Now Nisha need to print the number till N and once it exceed the number from N then Print "Games End".If Neha enter the number less then 0 print Invalid input.
Input Format
Program should take the input for Number N.
Constraints
0>=N<100
Output Format
Print the number till N and if the range of N exceed print "Games End”.If Neha enter the number less then 0 print "Invalid Input".
Sample Input 0
5
Sample Output 0
0
1
2
3
4
5
Games End
Sample Input 1
-10
Sample Output 1
Invalid Input
*/
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) {
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
if(n>=0 && n<=99)
{
for(int i=0;i<=n;i++)
System.out.println(i);
System.out.print("Games End");
}
else
System.out.print("Invalid Input");
}
}