#20193: 一定AC


samguo (科科)

學校 : 恆毅中學國中部
編號 : 104933
來源 : [211.22.52.6]
最後登入時間 :
2019-12-19 16:23:22
a147. Print it all | From: [211.22.52.6] | 發表日期 : 2019-12-12 17:38

#include <iostream>
using namespace std;
int main()
{
int n,j;
while ((cin >> n) && (n != 0)){
j=1;
while ( j<n ){
if ( j%7 != 0) {
cout << j << " ";
}
j++;
}
cout << endl;
}
}

 
ZeroJudge Forum