题解列表

筛选

二级c语言-计负均正(C++ 代码)

摘要:解题思路:1、先定义20大小的数组,两个计数count,分别用来计算正数和负数的个数2、定义sum用来计算正数的和,用ave来计算正数的平均数注意事项:1、计算平均数要记得类型转换2、输出负数个数(c……

还行,一般般吧

摘要:解题思路:注意事项:参考代码: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……