#10816: Java AC 參考


a1018345 (飄邈仙人)

學校 : 不指定學校
編號 : 56982
來源 : [114.42.79.104]
最後登入時間 :
2016-04-10 17:14:20
a147. Print it all | From: [114.42.223.79] | 發表日期 : 2016-03-27 21:55

package tw.LanYao.myproject.HomeWork;
import java.util.Scanner;

public class printToAll {

 public static void main(String[] args) {
  // TODO Auto-generated method stub

  Scanner sca=new Scanner(System.in);
  while(sca.hasNext()){
   
   int num=sca.nextInt();
   
   for(int i=1;i<num;i++){
    
    if(i%7!=0){
     System.out.printf("%d ",i);
    }
   }
   System.out.print("\n");
   
  }
  
  sca.close();
  
 }

}

 
ZeroJudge Forum