题解列表

筛选

2789: 骑车与走路

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

2788: 晶晶赴约会

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

2920: 分数线划定

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

2918: 成绩排序

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

2822: 求分数序列和

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

编写题解 1130: C语言训练-数字母(利用cctype)

摘要:解题思路:我看了一下题解,好像用ctype系列的题解暂时没有。这里就暂且引入一下ctype,操作就稍稍简单一点。ctype.h是C标准函数库中的头文件,定义了一批C语言字符分类函数(C charact……