teddy8 Full Stack Software Engineer

CodeUp - 기초100제(1046)

2019-06-19
teddy8

문제

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


소스코드

// 정수 3개 입력받아 합과 평균 출력하기
#include <iostream>

using namespace std;

int main()
{
	int n1, n2, n3;
	cin >> n1 >> n2 >> n3;
	cout << "합 : " << (n1 + n2 + n3) << endl;
	cout << "평균 : " << ((n1 + n2 + n3) / 3);
	return 0;
}


Comments

Content