首页上一页 1 下一页尾页 1 条记录 1/1页
do while和while语句的疑惑 实例位置:\TM\s1\4.07
发表在Java图书答疑
2020-09-17 悬赏:2 学分
《Java从入门到精通(第4版)》第4章 流程控制
是否精华
是
否
版块置顶:
是
否
package exercise;
public class GetSum {
public static void main(String[] args) {
// TODO Auto-generated method stub
int x=100;
x--;
while(x==60)
{
System.out.println("ok1");
}
int b=100;
do {
System.out.println("ok2");
b--;
}while(b==60);
}
}
我把x=60改为x=80还是输出ok2,不是说dowhile就比while提前做一次循环?