코딩테스트/정올

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

글로벌디노 2017. 9. 13. 13:19

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

정올 문제풀이

기초다지기 503 출력 자가진단3







C 코드


1
2
3
4
5
6
7
#include <stdio.h>
 
int main()
{
    printf("My name is Hong Gil Dong.\nI am 13 years old.");
    return 0;
}
cs



CPP 코드


1
2
3
4
5
6
7
8
#include <iostream>
using namespace::std;
 
int main()
{
    cout << "My name is Hong Gil Dong.\nI am 13 years old.";
    return 0;
}
cs



JAVA 코드


1
2
3
4
5
6
7
public class Main {
 
    public static void main(String[] args) {
        System.out.println("My name is Hong Gil Dong.\nI am 13 years old.");
    }
 
}
cs



PYTHON 코드


1
print("My name is Hong Gil Dong.\nI am 13 years old.")
cs