3 条题解
-
1Infinity_ LV 8 @ 2024-08-30 12:14:12
所有字母最终都会变成C,所以只要看第一个字母就行
-
12021-12-31 20:29:07@
#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; }
-
02022-01-29 09:49:26@
#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
信息
- ID
- 1255
- 难度
- 9
- 分类
- (无)
- 标签
- 递交数
- 3
- 已通过
- 3
- 通过率
- 100%
- 上传者