-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleIfReview
80 lines (55 loc) · 1.64 KB
/
SimpleIfReview
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* Jeanine Rioux 2/28/17
* CIS 18B continuing to review Ch 1-11
*/
package simple_if_review;
import java.util.Scanner;
public class Simple_if_review {
public static void main(String[] args) {
int value;
Scanner kb = new Scanner(System.in);
System.out.print("Enter as an integer value: ");
value = kb.nextInt();
/* first iteration - simple if
* second iteration - if else
if (value >= 0)
System.out.println("Value is greater than or equal to zero");
else
System.out.println("Value is less than zero");
//third iteration - nested if
if (value == 0)
System.out.println("Value is equal to zero");
else if (value <0)
System.out.println("Value is less than zero.");
else
System.out.println("Value is greater than zero.");
// Switch and case
switch(value)
{
case 0:
case 2:
case 4:
System.out.println("line 41 executed....");
break;
case -1:
case -2:
System.out.println("line 45 executed....");
break;
default:
System.out.println("line 49 executed....");
}//end switch
//While loop example
while ( value >0)
{
System.out.printf("Value = %d%n", value);
value--;
} // end while
*/
// do while example
do
{
System.out.printf("Value = %d%n", value);
value--;
} while ( value >0);
}//end main method
}// end class