代码
提交代码
public class IfStatement1 { public static void main(String args[]) { int age = 18; if(age >= 18) { System.out.println("在中国你已经成年"); } } }
运行结果