[정올] 기초다지기_출력_자가진단_code503 (C/C++/Python) 포스팅 썸네일 이미지

Coding_Algorithm/정올 문제풀이

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

503 : 출력 - 자가진단3 제한시간: 1000 ms 메모리제한: 0 MB 해결횟수: 16041 회 시도횟수: 29498 회 아래와 같이 출력되는 프로그램을 작성하라. My name is Hong Gil Dong. I am 13 years old. 1. C언어 #include int main() { printf("My name is Hong Gil Dong.\nI am 13 years old."); return 0; } 2. C++ #include using namespace std; int main() { cout

2019.11.04 게시됨