博客园 首页 新随笔 联系 订阅 管理

2020年9月29日 #

摘要: int x=10; do { System.out.println("value of x:"+x); x++; } while(x<20); //do while循环 1 int x=10; 2 while(x<20) { 3 System.out.println("value of x:"+x) 阅读全文
posted @ 2020-09-29 14:57 Slientsake 阅读(136) 评论(0) 推荐(0)