Java三种循环求和方法
程序员文章站
2022-04-14 15:09:42
注意: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种常用的求和方法,感谢大家对的支持。
上一篇: SSM框架整合之junit测试的方法
下一篇: 分析JAVA中几种常用的RPC框架