코딩테스트/정올

정올 기초다지기 출력 자가진단4

글로벌디노 2017. 9. 14. 14:12

정올 기초다지기 출력 자가진단4




정올 문제풀이

기초다지기 504 출력 자가진단4







C 코드


1
2
3
4
5
6
7
#include <stdio.h>
  
int main()
{
    printf("(@) (@)\n(=^.^=)\n(-m-m-)");
    return 0;
}
cs



CPP 코드


1
2
3
4
5
6
7
8
#include <iostream>
using namespace::std;
 
int main()
{
    cout << "(@) (@)\n(=^.^=)\n(-m-m-)";
    return 0;
}
cs



JAVA 코드


1
2
3
4
5
6
7
public class Main {
 
    public static void main(String[] args) {
        System.out.println("(@) (@)\n(=^.^=)\n(-m-m-)");
    }
 
}
cs



PYTHON 코드


1
print("(@) (@)\n(=^.^=)\n(-m-m-)")
cs