algorithm/기초다지기
505 : 출력 - 자가진단5
m0nd2y
2018. 2. 26. 22:18
505 : 출력 - 자가진단5
서식 문자를 사용하여 다음과 같이 출력되는 프로그램을 작성하라.
![]() I can program well. Dreams come true. |
/************************************************************** Problem: 505 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { printf("%s \n","I can program well.");//%s <- 뒤에있는 문자열 받아오기
printf("%s \n","Dreams come true.");
return 0; }
기타오류 + 문의는 공지를 확인해주세요!