코딩테스트/정올

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

글로벌디노 2017. 9. 18. 13:46

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



정올 문제풀이

기초다지기 505 출력 자가진단5





C 코드


1
2
3
4
5
6
7
#include <stdio.h>
 
int main()
{
    printf("%s""I can program well.\nDreams come true.");
    return 0;
}
cs



CPP 코드


1
2
3
4
5
6
7
8
9
#include <iostream>
using namespace::std;
  
int main()
{
    cout << "I can program well." << endl;
    cout << "Dreams come true.";
    return 0;
}
cs



JAVA 코드


1
2
3
4
5
6
7
public class Main {
 
    public static void main(String[] args) {
        System.out.printf("%s""I can program well.\nDreams come true.");
    }
 
}
cs



PYTHON 코드


1
print ("%s" % ("I can program well.\nDreams come true."))
cs