코딩/Language Coder
505 : 출력 - 자가진단5
pikapika
2018. 4. 13. 22:55
서식 문자를 사용하여 다음과 같이 출력되는 프로그램을 작성하라.
![]() I can program well. Dreams come true. |
[코드]
#include <stdio.h>
int main() {
printf("I can program well. \n");
printf("Dreams come true. \n");
printf("Dreams come true. \n");
return 0;
}
}