Java三种循环求和方法
程序员文章站
2022-07-28 15:46:29
注意:100之和为5050
普通for循环:
public class hundredsum {
public static void main(stri...
注意:100之和为5050
普通for循环:
public class hundredsum { public static void main(string[] args){ int x=0; for(int i=1;i<=100;i++){ x=x+i;//x+=i; } system.out.print(x); } }
while循环:
public class hundredsum { public static void main(string[] args){ int x=0; int i; while (i<=100){ x=x+i; //x+=i; i++; } system.out.print(x); } }
do-while循环:
public class hundredsum{ public static void main(string[] args){ int i=0,x=0; do{ x=x+i; //x+=i; i++; }while (i<=100); //先循环do语句块,再执行while,不满足while条件则跳出循环 system.out.print(x); } }
以上就是本次整理的3种常用的求和方法,感谢大家对的支持。
上一篇: 哎哟,这发型不错哦!
下一篇: 详解Java冒泡排序