题解列表

筛选

1197: 发工资咯

摘要:#include<iostream> using namespace std; int main(){     int a[]={100,50,10,5,2,1};     int n,mon……
优质题解

高精度加法(易懂)

摘要:![](/image_editor_upload/20210504082120_20948.png) 输入的数据放在数组里是左对齐的 我们需要相应转化 ![](/image_editor_uplo……

成绩排序(多多指教)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct students{char name[101];int age;i……

迭代法求平方根

摘要:解题思路:先了解什么是牛顿迭代法求平方根;然后就是按正常思路迭代就行。注意事项:求绝对值的函数调用;                int abs(int x) C 库函数 int abs(int x……

python 超简单写法

摘要:解题思路:注意事项:参考代码x = input()list = [x]if len(x) < 100:    for i in list:        print(i[::-1])……

python 超简单写法

摘要:解题思路:注意事项:参考代码:x = input()if len(x) < 100:    print(x.lower())#数字太少不让发 这段别管 我随便加点sadadasddsadasdsada……