반응형
배열 days[]를 아래와 같이 초기화 하고 배열 원소의 값을 다음과 같이 출력하는 프로그램을 작성하라.
31,29,31,30,31,30,31,31,30,31,30,31
1 2 3 4 5 6 7 8 9 10 11 12 | #include <stdio.h> #define SIZE 12 int main(void) { int i; int month[SIZE]={31,29,31,30,31,30,31,31,30,31,30,31}; for(i=0;i<SIZE;i++) { printf("%d월은 %d일까지 있습니다.\n", i+1, month[i]); } return 0; } | cs |
반응형