[정올] 기초다지기_출력_자가진단2_code502 (C/C++/Python)

두비니

·

2019. 11. 3. 14:15

502 : 출력 - 자가진단2

제한시간: 1000 ms    메모리제한: 0 MB
해결횟수: 17125 회    시도횟수: 27418 회   

 

 

다음과 같이 출력되는 프로그램을 작성하라.






Programming! It's fun.

 

1. C언어

#include <stdio.h>

int main() {
	printf("Programming! It's fun.");

	return 0;
}

 

 

2. C++

#include <iostream>
using namespace std;

int main() {
	cout << "Programming! It's fun." << endl;
}

 

3. PY2/PY3

 

print("Programming! It's fun.")