怎么用JAVA WHILE或者DO-WHILE写程序呢

例如缸子里一共有50升水。现有15升。每次能挑5升。要挑几次才能挑完。编辑成程序用WHILE或者DO-WHILE形式该怎么写呢?

第1个回答  2013-09-01
用do while完成

public class Test {

/**
* @param args
*/
public static void main(String[] args) {
int count=0;
int all=50;//总共50升
int now=15;//现在有15升
int cnt=5;//每次加5升

do{
count+=1;
now+=cnt;
}while(now<all);

System.out.print("需要"+count+"次完成!");

}

}
第2个回答  2013-09-01
用while循环

public class Test {

/**
* @param args
*/
public static void main(String[] args) {
int count=0;
int all=50;//总共50升
int now=15;//现在有15升
int cnt=5;//每次加5升

while(now<all){
now+=cnt;
count++;
}

System.out.print("需要"+count+"次完成!");

}

}本回答被网友采纳
相似回答
大家正在搜