#include<stdio.h>
#include<stdlib.h>
int main()
{
int days[]={'31','28','31','30','31','30','31','31','30','31','30','31'};
for(int i=0;i<12;i++)
printf("%d\n",days[i]);
system("pause");
return 0;}
我想做个小程序,写入12个月的天数,然后输出,但是输出的结果有点吓人,数特别大,咋整?