#10394: c++ switch解答


sujohn3 (unknown)


#include <iostream>

using namespace std;

int main(){

 int M,D,S;

M=0;D=0;S=0;

 

    while (cin >>M >>D ){

   

          S=(M*2+D)%3;

          cout <<S;

       

       switch(S){

case 0:

cout << "普通"<<endl;

break;

case 1:

cout << "吉"<<endl;

break;

case 2:

cout << "大吉"<<endl;

 

    

          }

    }

return 0;

}