第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+"次完成!");
}
}本回答被网友采纳