1 条题解
- 
  -4
njnu19170318 (19170318) LV 8 @ 2019-01-22 19:58:15
#include <iostream>
#include <string>
using namespace std;int main()
{
string str;
cin >> str;
switch(str[0])
{
case 'A': cout << "Aquaman Win" << endl; break;
case 'B': cout << "Superman Win" << endl; break;
case 'C': cout << "Batman Win" << endl; break;
}
return 0;
} 
- 1
 
信息
- 难度
 - 4
 - 分类
 - (无)
 - 标签
 - (无)
 - 递交数
 - 43
 - 已通过
 - 18
 - 通过率
 - 42%
 - 被复制
 - 4
 - 上传者