java尋找100到1000之間能被5和6整除的數

洋蔥ycy發表於2015-03-25
package pritice4;


public class Searchcount {


public static void main(String[] args) {
// 找出100到1000之間可以被5和6整除的數
   final int PRIME = 100;//定義最開始的數
   final int LAST = 1000;//定義最終的數
   final int LINE = 10;//line個數以後換行
int i,count = 0;
  for(i=PRIME;i<=LAST;i++)
  {
  if((i%5 == 0)&&(i%6 == 0))
  {
  System.out.print(i+"  ");
  count++;
  if(count%LINE == 0)
  System.out.println();
  }
  
  }


}


}

相關文章