提示不明白?
#include<iostream>int main()
{
int month=4;
char season;
if (month==12||month==1||month==2)
{season='Winter';}
else
if (month==3||month==4||month==5)
{season='Spring';}
else
if (month==6||month==7||month==8)
{season='Summer';}
else
if (month==9||month==10||month==11)
{season='Autumn';}
else printf("Bogus Month");
printf("April is in the %c\n",season);
return 0;
}
too many characters in constant