algorithm(153)
- 
                
                  
                  101 : 출력 - 형성평가1101 : 출력 - 형성평가1 다음 "출력 예"와 같이 출력하는 프로그램을 작성하시오. My name is Hong 출처 : 자기주도C언어프로그래밍 -----해설----- /************************************************************** Problem: 101 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { printf("My name is Hong"); return 0; } 기타오류 + 문의는 공지를 확인해주세요! 2018.02.26
- 
                
                  
                  508 : 출력 - 자가진단8508 : 출력 - 자가진단8 다음과 같이 출력되는 프로그램을 작성하라. (각 요소들은 10칸씩 공간을 확보하여 오른쪽으로 정렬하여 출력한다.) item count price pen 20 100 note 5 95 eraser 110 97 출처 : 자기주도C언어프로그래밍 -----해설----- /************************************************************** Problem: 508 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { .. 2018.02.26
- 
                
                  
                  507 : 출력 - 자가진단7507 : 출력 - 자가진단7 다음과 같이 출력되는 프로그램을 작성하라.(공백으로 구분하여 출력) 5 Dan 5 * 2 = 10 출처 : 자기주도C언어프로그래밍 -----해설----- /************************************************************** Problem: 507 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { printf("%d%s \n", 5,"Dan"); printf("%d * %d = %d\n", 5, 2, 5*.. 2018.02.26
- 
                
                  
                  506 : 출력 - 자가진단6506 : 출력 - 자가진단6 다음과 같이 출력되는 프로그램을 작성하라. My height 170 My weight 68.600000 출처 : 자기주도C언어프로그래밍 -----해설----- /************************************************************** Problem: 506 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { printf("%s \n","My height"); printf("%d \n", 170);//%d로 정수.. 2018.02.26
- 
                
                  
                  505 : 출력 - 자가진단5505 : 출력 - 자가진단5 서식 문자를 사용하여 다음과 같이 출력되는 프로그램을 작성하라. I can program well. Dreams come true. 출처 : 자기주도C언어프로그래밍 -----해설----- /************************************************************** 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 2018.02.26
- 
                
                  
                  504 : 출력 - 자가진단4504 : 출력 - 자가진단4 다음과 같이 출력되는 프로그램을 작성하라. (@) (@) (=^.^=) (-m-m-) 첫 번째 줄 중간에 공백 하나가 포함되어 있다. 출처 : 자기주도C언어프로그래밍 -----해설----- /************************************************************** Problem: 504 User: ldj6192 Language: C++ Result: Success Time:0 ms Memory:1088 kb ****************************************************************/ #include int main() { printf("(@) (@)\n"); printf("(=^.^=)\n");.. 2018.02.26