题解列表

筛选

比较容易理解的代码

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[105][105];void move(int &x……

分数线划定

摘要:```cpp#include #include using namespace std;struct interviewer{ int number; int score;……

矩形面积交

摘要:解题思路:通过画图可知,两矩形的边的表示方法注意事项:参考代码:a = list(map(float, input().split()))b = list(map(float, input().spl……

ASCII字符和数字之间的转换

摘要:解题思路: 在 C 语言中,字符常量可以直接作为整数参与运算,因为它在内存中存储的就是对应的 ASCII 码值。同样,一个整数也可以作为字符……