[정올] 기초다지기_출력_자가진단_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.")
'Coding_Algorithm > 정올 문제풀이' 카테고리의 다른 글
[정올] Language Coder_출력_자가진단5_code505 (C/C++/Python) (0) | 2020.03.07 |
---|---|
[정올] 기초다지기_출력_자가진단4_code504 (C/C++/Python) (0) | 2019.11.04 |
[정올] 기초다지기_출력_자가진단2_code502 (C/C++/Python) (0) | 2019.11.03 |
[정올] 기초다지기_출력_자가진단1_code501 (c/c++/python) (0) | 2019.11.03 |
[정올] 기초다지기_함수1_형성평가 1_code170 (0) | 2019.10.03 |