摘要: public class Mq2 { public static void main(String[]args) { int b = 3; while (b < 7) { System.out.println("吼"); b = b + 1; } //输出结果为四个吼 int a = 3; a++; 阅读全文
posted @ 2020-12-07 17:35 梅七 阅读(96) 评论(0) 推荐(0)
摘要: public class Mq { public static void main(String[]args){ int a = 3 ; a++;// do{ System.out.println("年轻人不讲would"); } while(a==3); for(int b=3 ;b<6;b++) 阅读全文
posted @ 2020-12-07 16:38 梅七 阅读(88) 评论(0) 推荐(0)