Day1之WhileDemo

来源:互联网 发布:跳跃网络 垃圾公司 编辑:程序博客网 时间:2024/06/06 12:41
package java151117;
//while的循环结构
public class WhileDemo {
public static void main(String[] args) {
int x = 3;
System.out.println("x=" + x);


}


}
0 0