package javaapplication14;
public class JavaApplication14 {
public static void main(String[] args) { if (1>2)
{
System.out.println("1 is greater than 2");
}
else
{
System.out.println("2 is greater than 1");
}
}
}
package javaapplication14;
public class JavaApplication14 {
public static void main(String[] args) { if (1>2)
{
System.out.println("1 is greater than 2");
}
else
{
System.out.println("2 is greater than 1");
}
}
}
Comments
Post a Comment