//case后面改成数值,不是字符;include<iostream> using namespace std;void main(){int month;cout<<"input a month between 1--12:";cin>>month;switch(month){ case 1:cout<<"January 31days\n";break;case 2:cout<<"February 28or29days\n";break;case 3:cout<<"March 31days\n";...