문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 3의 배수는 통과?
// input : 10
// output : 1 2 4 5 7 8 10
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = 1; i <= n; i++)
{
if (i % 3 != 0)
cout << i << " ";
}
return 0;
}