📅  最后修改于: 2022-03-11 15:00:07.085000             🧑  作者: Mango
public class Test {
public static void main(String args[]) {
int x = 30;
int y = 10;
if( x == 30 ) {
if( y == 10 ) {
System.out.print("X = 30 and Y = 10");
}
}
}
}