题解列表

筛选

合法C标识符

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; cin>>s; for(int i=0;……

台球碰撞问题

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<math.h>//调用数学库函数//使用三角函数注意事项://1、包含头文件……

2799: 奥运奖牌计数

摘要:解题思路:输入行,每行的金牌数,相加就可以了注意事项:参考代码:……