[정올] 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.")