코딩테스트/정올

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

글로벌디노 2017. 9. 12. 20:59

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

정올 문제풀이

기초다지기 502 출력 자가진단2




문 제

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



출력 예

Programming! It's fun.



C 코드


1
2
3
4
5
6
7
#include <stdio.h>
 
int main()
{
    printf("Programming! it's fun!");
    return 0;
}

cs



CPP 코드


1
2
3
4
5
6
7
8
#include <iostream>
using namespace::std;
 
int main()
{
    cout << "Programming! it's fun!";
    return 0;
}
cs



JAVA 코드


1
2
3
4
5
6
7
public class Main {
 
    public static void main(String[] args) {
        System.out.println("Programming! it's fun!");
    }
 
}
cs



PYTHON 코드


1
print("Programming! it's fun!")
cs