題目連結: https://zerojudge.tw/ShowProblem?problemid=a147
# 解題思路
除以 7 的餘數不為 0 的數都要輸出出來,應該不會難道你吧
# 程式碼
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int n; | |
while(cin>>n) | |
{ | |
int i; | |
for(i =1; i<n;i++) | |
{ | |
if(i%7!=0) | |
cout<<i<<" "; | |
} | |
cout<<endl; | |
} | |
} |