题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:参考代码import math #导入模块def main(n): #定义函数 return math.factorial(n)n = int(input())sn = …… 题解列表 2023年02月07日 0 点赞 0 评论 139 浏览 评分:0.0
结构体简化排序 摘要:解题思路:用结构体方式储存字符串以及字符串的长度 可以更方便地进行排序注意事项:参考代码:typedef struct str{ char str[101]; int len;}st;int main…… 题解列表 2023年02月07日 0 点赞 0 评论 256 浏览 评分:0.0
2808: 买房子 摘要:解题思路:注意事项:参考代码:a = 200n,k = map(int,input().split())for i in range(1,22): if i > 20: print…… 题解列表 2023年02月07日 0 点赞 0 评论 351 浏览 评分:0.0
2068: [STL训练]Ignatius and the Princess IV (C++) 摘要:解题思路: 读入,排序,最中间的数即为所求注意事项: 无参考代码:#include <iostream> // #include <sstream> // #include <cstdio> #…… 题解列表 2023年02月07日 0 点赞 0 评论 153 浏览 评分:0.0
3000: 交换值 摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())c = a ; a = b ; b = cprint(a,b)…… 题解列表 2023年02月07日 0 点赞 0 评论 285 浏览 评分:0.0
C语言训练:阿姆斯特朗数 格式错误:一个空格就好了 摘要:解题思路:注意事项:参考代码:#include#includeint main(){int n,a,b,c;for(int i=2;i<1000;i++){ int j=i; while(…… 题解列表 2023年02月08日 0 点赞 0 评论 86 浏览 评分:0.0
鸡兔同笼Python解题 摘要:解题思路:注意事项:注意取值范围参考代码:n,m=map(int,input().split())for i in range(n+1): if i*2+(n-i)*4==m: p…… 题解列表 2023年02月08日 0 点赞 0 评论 227 浏览 评分:0.0
1052: [编程入门]链表合并题解 摘要:解题思路:参考了最赞,不过大部分按照自己理解重新写了答案1、新建链表节点结构体;2、定义创建链表函数;3、定义合并链表函数;4、定义链表按学号升序函数;5、定义输出链表数据函数;6、主函数:输入两张链…… 题解列表 2023年02月08日 0 点赞 0 评论 158 浏览 评分:0.0
pyhton选择排序解法 带注释 摘要:n=int(input().strip())X=list(map(int,input().split()))# print(X)for i in range(n): k=i #记录最小的值的下标…… 题解列表 2023年02月08日 0 点赞 0 评论 192 浏览 评分:0.0
c++兰顿蚂蚁简单思路 摘要:```cpp #include #include using namespace std; const int N = 105; int g[N][N]; int n,m,x,y,k…… 题解列表 2023年02月08日 0 点赞 0 评论 219 浏览 评分:0.0