teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1083)

2019-06-20
teddy8

문제

URL : https://codeup.kr/problemsetsol.php?psid=23


소스코드

// 3 6 9 게임의 왕이 되자!
// input  : 9
// output : 1 2 X 4 5 X 7 8 X 
// 설명 : 1 부터 그 수까지 순서대로 출력하는데,
// 3 or 6 or 9인 경우 영문 대문자 'X' 출력

#include <iostream>

using namespace std;

int main()
{
	int n; // 1~10까지만 입력

	cin >> n;

	for (int i = 1; i <= n; i++)
		if ((i % 3) == 0)
			cout << "X ";
		else
			cout << i << ' ';

	return 0;
}


Comments

Content