#11935: JAVA解


FaiWei (ChunWeiYeah)

學校 : 樹德科技大學
編號 : 61317
來源 : [220.143.87.171]
最後登入時間 :
2017-09-19 20:14:15
a147. Print it all | From: [218.173.2.177] | 發表日期 : 2017-04-22 20:02

import java.util.Scanner;
public class array {
public static void main(String[]argv){

Scanner sc=new Scanner(System.in);

int score;

while(sc.hasNext()){

score=sc.nextInt();

for(int i=1;i<score;i++){
if(i%7==0)
continue;

System.out.print(i+" ");

}
System.out.println();
}



}
}

 
ZeroJudge Forum