記得要endl喔,不然系統會說你的回答錯誤,還有,別忘了加空格" ",每個數字後面都要。
以下為完整程式碼:
#include <iostream>
#include <iomanip> (這行可以省略,因為我做完上一個忘記刪掉了)
using namespace std;
int main()
{
int n, m;
while(cin>>n){
for(m=1;n>m;m++){
if(m%7!=0)
cout<<m<<" ";
else
cout<<++m<<" ";
}
cout<<endl;
}
return 0;
}