题解列表

筛选

还行,一般般吧

摘要:解题思路:注意事项:参考代码:def hanshu(a, b, c):    det = b ** 2 - 4 * a * c    if det > 0:        x1 = (-b + pow……

记录一蛤 T#T

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<string.h>#include<ctype.h>int even(int a){ ……

二级C语言-进制转换

摘要:```cpp #include #include typedef struct SNode{ int data; struct SNode *next; }SNode,*Lin……

二级c语言-温度转换(C++ 代码)

摘要:解题思路: 注意事项: 在做5除于9时要用小数点,不然会返回0.参考代码:#include <iostream>using namespace std;#include <iomanip>int ma……

1008: [编程入门]成绩评定

摘要:解题思路:用switch()语句,正好可以用分数/10的整数值作为case。注意事项:需要做异常处理,保证分数在0-100以内。参考代码:#include <iostream> using na……