第九周 血型统计

#include <iostream>
 using namespace std;
 int main ()
 {
     int a=0,b=0,c=0,o=0;
     char oper;
     cout<<"输入所有血型";
     while(oper!='X')
     {
         cin>>oper;
         switch(oper)
         {
         case 'A':
             a++;
             break;
         case 'B':
             b++;
             break;
         case 'C':
             c++;
             break;
         case 'O':
             o++;
             break;
         }

     }
     cout<<"A:"<<a;
     cout<<"B:"<<b;
     cout<<"AB:"<<c;
     cout<<"o:"<<o;
     cout<<endl;
     return 0;
 }

 

你可能感兴趣的:(第九周 血型统计)