[编程入门]链表合并 摘要:# 链表合并 ```c++ #include #include #include #include using namespace std; struct linknode …… 题解列表 2024年12月06日 0 点赞 0 评论 675 浏览 评分:0.0
简化abc关系,找到集中遍历的单一对象 摘要:解题思路:1.简化abc关系,找到集中遍历的单一对象:转化表达的b2.用整数做卡点区分循环,注意b的值是求余,筛选却要用求模3.注意a的范围限制。有一个隐藏点需要验证,即如果a=14的临界,其实不满足…… 题解列表 2024年12月06日 0 点赞 0 评论 310 浏览 评分:0.0
Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int a[101];int main(){ int n,sum=0; scanf("%d"…… 题解列表 2024年12月06日 0 点赞 0 评论 632 浏览 评分:0.0
无聊的星期五 摘要:while True: x, y = list(map(int, input().split())) if x == 0 and y == 0: break print…… 题解列表 2024年12月06日 0 点赞 0 评论 531 浏览 评分:0.0
函数求解最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int m, int n);int lcd(int m, int n);int main(void){ int m…… 题解列表 2024年12月06日 4 点赞 0 评论 1862 浏览 评分:10.0
数组回文串 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string.h>int main() { char arr [255]; …… 题解列表 2024年12月06日 0 点赞 0 评论 362 浏览 评分:0.0
编写题解 2787: 有一门课不及格的学生 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); if((a<60&&b>60)…… 题解列表 2024年12月06日 0 点赞 0 评论 226 浏览 评分:0.0
向量点积计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,a[n],b[n],s,sum=0; scanf("%d",&n); for(…… 题解列表 2024年12月06日 0 点赞 0 评论 253 浏览 评分:0.0
python重载练习之复数加减法 摘要:解题思路:注意事项:参考代码:class Complex: def __init__(self, real1, imag1, real2, imag2, op): self…… 题解列表 2024年12月06日 0 点赞 0 评论 304 浏览 评分:0.0
python重载练习之复数加减法 摘要:解题思路:注意事项:参考代码:class Complex: def __init__(self,real=0,imag=0): self.real=real self…… 题解列表 2024年12月06日 0 点赞 0 评论 185 浏览 评分:0.0