[정올] Language Coder_출력_자가진단7_code507 (C/C++/Python)
두비니
·2020. 3. 7. 23:28
1. C
#include <stdio.h>
int main(){
printf("5 Dan\n");
printf("5 * 2 = 10\n");
return 0;
}
2. C++
#include <iostream>
using namespace std;
int main(){
cout << "5 Dan" << endl;
cout << "5 * 2 = 10" << endl;
}
3. Python3
print("5 Dan")
print("5 * 2 = 10")
'Coding_Algorithm > 정올 문제풀이' 카테고리의 다른 글
[정올] Language Coder_연산자_자가진단7_code524 (C) (0) | 2020.03.08 |
---|---|
[정올] Language Coder_출력_자가진단8_code508 (C) (0) | 2020.03.08 |
[정올] Language Coder_출력_자가진단6_code506 (C/C++/Python) (0) | 2020.03.07 |
[정올] Language Coder_출력_자가진단5_code505 (C/C++/Python) (0) | 2020.03.07 |
[정올] 기초다지기_출력_자가진단4_code504 (C/C++/Python) (0) | 2019.11.04 |