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

두비니

·

2019. 11. 4. 16:28

 

다음과 같이 출력되는 프로그램을 작성하라.




(@) (@)

(=^.^=)

(-m-m-)



첫 번째 줄 중간에 공백 하나가 포함되어 있다.

 

 

 

1. C언어

#include <stdio.h>

int main() {
	printf("(@) (@)\n(=^.^=)\n(-m-m-)\n");

	return 0;
}

 

2. C++

#include <iostream>
using namespace std;

int main() {
	cout << "(@) (@)" << endl;
	cout << "(=^.^=)" << endl;
	cout << "(-m-m-)" << endl;
}

 

3. PY2/PY3

print("(@) (@)")
print("(=^.^=)")
print("(-m-m-)")