Menu

[r9]: / Chapter 1 Code / IfTest2.java  Maximize  Restore  History

Download this file

11 lines (11 with data), 215 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
public class IfTest2 {
public static void main(String[] args) {
int x = 1;
if (x == 2) {
//lalala
System.out.println("Never to be shown");
} else {
System.out.println("X is not 2");
}
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.