java入门教程:while的用法_while循环详解
来源 :中华考试网 2016-04-26
中while 循环详解
在英文中“while”这个词的意思是“当”,而在 Java 程序设计中,也可以将其理解为“当”,其语法结构是:
while (条件){
目的; //一段代码
}
当条件为真时,进入循环。
示例:计算1+2+3+4......+100的结果。
public class control5{
public static void main(String[] args){
int a= 1 ,result= 0 ;
while (a<= 100 ){
result+=a++;
}
System.out.println(result);
}
}
|
输出结果:
5050