题解列表

筛选

求和训练(python)

摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().strip().split())e,r,t=0,0,0for i in range(1,a+1):    e+=i   for……

2822: 求分数序列和

摘要:```cpp #include #include using namespace std; int main() { int n; double a=1.0,b=2.0,……

2918: 成绩排序

摘要:```cpp #include #include using namespace std; typedef struct student { char m[20]; in……

2920: 分数线划定

摘要:```cpp #include #include using namespace std; typedef struct student { int id; int ma……

2788: 晶晶赴约会

摘要:```cpp #include using namespace std; int main() { int n; cin>>n; if(n!=1&&n!=3&&n……

2789: 骑车与走路

摘要:```cpp #include using namespace std; int main() { int b,c; float a; cin>>a; ……