blob: af6fcdaadd1d719cda4c64f2ebba7cb4bb9c5aec [file] [log] [blame]
public class If
{
public static void main(String[] args) {
int i = 0;
if (i == 0)
System.out.println("i == 0");
else
System.out.println("i != 0");
}
}