정올 문제풀이
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 |
반응형
'코딩테스트 > 정올' 카테고리의 다른 글
정올 1370 회의실 배정 (0) | 2020.06.30 |
---|---|
정올 1816 외양간 문제풀이 (0) | 2020.06.25 |
정올 기초다지기 출력 자가진단4 (0) | 2017.09.14 |
정올 기초다지기 출력 자가진단3 (0) | 2017.09.13 |
정올 기초다지기 출력 자가진단2 (0) | 2017.09.12 |