求1-100和

FOR语句:

  1. public static void main(String[] args) {   
  2.         int count=0;   
  3.         for(int i=1;i<=100;i++)   
  4.             count+=i;   
  5.         System.out.println(count);   
  6.     }  

WHILE循环:

  1. public static void main(String[] args) {   
  2.         int count=0,i=0;   
  3.         while((++i)<=100)   
  4.             count+=i;   
  5.         System.out.println(count);   
  6.     }  

DO-WHILE循环

  1. public static void main(String[] args) {   
  2.         int count=0,i=0;   
  3.         do{   
  4.             count+=i;   
  5.         }while((++i)<=100);   
  6.         System.out.println(count);   
  7.     }  
 如未特殊声明,文章均为原创。
 本文标题:求1-100和
 本文链接:https://manwish.cn/article/%e6%b1%821-100%e5%92%8c.html

留下评论