欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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种常用的求和方法,感谢大家对的支持。