#45851: 西嘉嘉


chen971023@gmail.com (ZiaynGZiyaNG)

School : 國立臺南第二高級中學
ID : 291750
IP address : [122.121.141.56]
Last Login :
2025-07-03 13:13:41
a147. Print it all | From: [118.150.34.123] | Post Date : 2025-04-19 23:22

#include <iostream>

using namespace std;

 

int main()

{

int n;

while (true)

{

cin >> n;

if (n == 0)

{

break;

}

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

{

if (i % 7 != 0)

{

cout << i << " ";

}

}

cout << endl;

}

}

// :D

 
ZeroJudge Forum