#29607: C++紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a147. Print it all | From: [182.233.207.92] | 發表日期 : 2022-03-14 01:37

#include <iostream>

#include <string>

#include <sstream>

#include <cmath>

using namespace std;

int main()

{

int x;

while (cin >> x)

{

for (int i = 1; i < x; i++)

{

if (i % 7 == 0)

{

i = i + 1;

}

cout << i << " ";

}

cout << endl;

}

}

 

 
ZeroJudge Forum