[정올] Language Coder_출력_자가진단5_code505 (C/C++/Python)
두비니
·2020. 3. 7. 06:05
1. C
#include <stdio.h>
int main(){
printf("I can program well.\n");
printf("Dreams come true.\n");
return 0;
}
2. C++
#include <iostream>
using namespace std;
int main(){
cout << "I can program well." << endl;
cout << "Dreams come true." << endl;
}
3. Python3
print("I can program well.")
print("Dreams come true.")
'Coding_Algorithm > 정올 문제풀이' 카테고리의 다른 글
[정올] Language Coder_출력_자가진단7_code507 (C/C++/Python) (0) | 2020.03.07 |
---|---|
[정올] Language Coder_출력_자가진단6_code506 (C/C++/Python) (0) | 2020.03.07 |
[정올] 기초다지기_출력_자가진단4_code504 (C/C++/Python) (0) | 2019.11.04 |
[정올] 기초다지기_출력_자가진단_code503 (C/C++/Python) (0) | 2019.11.04 |
[정올] 기초다지기_출력_자가진단2_code502 (C/C++/Python) (0) | 2019.11.03 |