用while和for循环输出1-1000之间能被5整除的数,且每行输出3个。

•用while和for循环输出1-1000之间能被5整除的数,且每行输出3个。

FOR语句:

  1. public static void main(String[] args) {   
  2.         int count=0,j=0;   
  3.         for(int i=5;i<=1000;i+=5,j++)   
  4.         {   
  5.             if(j%3==0 && j!=0)   
  6.                 System.out.println();   
  7.             System.out.print(i+ " ");   
  8.         }   
  9.     }  

WHILE语句:

  1. public static void main(String[] args) {   
  2.         int i=0,j=-1;   
  3.         while((i+=5)<=1000)   
  4.         {   
  5.             if((++j)%3==0 && j!=0)   
  6.                 System.out.println();   
  7.             System.out.print(i+ " ");j++;   
  8.         }   
  9.     }  

留下评论