teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1065)

2019-06-20
teddy8

문제

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


소스코드

// 3개의 정수 입력받아 짝 수 출력하기
// input : 1 2 4
// output : 2 
//          4
#include <iostream>

using namespace std;

int main()
{
	int n[3];

	for (int i = 0; i < 3; i++)
	{
		cin >> n[i];

		if (n[i] % 2 == 0)
			cout << n[i] << endl;
	}

	return 0;
}


Comments

Content