algorithm(153)
- 
                
                  
                  503 : 출력 - 자가진단3503 : 출력 - 자가진단3 아래와 같이 출력되는 프로그램을 작성하라. My name is Hong Gil Dong. I am 13 years old. 출처 : 자기주도C언어프로그래밍 -----해설----- /************************************************************** Problem: 503 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { printf("My name is Hong Gil Dong. \n");//출력하기 +.. 2018.02.26
- 
                
                  
                  502 : 출력 - 자가진단2502 : 출력 - 자가진단2 다음과 같이 출력되는 프로그램을 작성하라. Programming! It's fun. 출처 : 자기주도C언어프로그래밍 -----해설----- /************************************************************** Problem: 502 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { printf("Programming!\n");//\n 한줄엔터 printf("재미있어요! "); return 0; } 기타오.. 2018.02.26
- 
                
                  
                  501 : 출력 - 자가진단1501 : 출력 - 자가진단1 아래 "출력예"와 같이 출력되는 프로그램을 작성하라. Fun Programming! 출처 : 자기주도C언어프로그래밍 -----풀이----- /************************************************************** Problem: 502 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { printf("C언어 프로그래밍! "); printf("재미있어요! "); return 0; } 기타오류 + 문의는 프로필 .. 2018.02.26