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

두비니

·

2019. 11. 4. 00:18

503 : 출력 - 자가진단3

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

 

 

아래와 같이 출력되는 프로그램을 작성하라.




My name is Hong Gil Dong.

I am 13 years old.

 

 

 

 

 

1. C언어

#include <stdio.h>

int main() {
	printf("My name is Hong Gil Dong.\nI am 13 years old.");

	return 0;
}

 

2. C++

#include <iostream>
using namespace std;

int main() {
	cout << "My name is Hong Gil Dong." << endl;
	cout << "I am 13 years old." << endl;
}

 

3. PY2/PY3

print("My name is Hong Gil Dong.")
print("I am 13 years old.")