题解列表
1052: [编程入门]链表合并
摘要:思路比较简单,但相对应代码也比较长,共有七十行若您有改进的建议,欢迎与我交流参考代码:#include<iostream>using namespace std;struct ……
题解 2236: 蓝桥杯算法训练-大小写转换
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ strin……
[竞赛入门]简单的a+b 第一题
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h> // 用于exit函数int main() { &nbs……
编写题解 1011: [编程入门]最大公约数与最小公倍数
摘要: #includeusing namespace std ;int main(){ int t = 1 ; int m,n ; cin>>m>>n ;……
2025.7.21刷题记录
摘要:解题思路:注意事项:参考代码:#include<stdio.h>const double pi = 3.14159;int main(){ //大象要喝的水量&n……
2025.7.21刷题记录
摘要:解题思路:实数不只是整数还有浮点数等等注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ i……
2893: 肿瘤面积
解题思路:注意事项:参考代码:#include#includeusingnamespacestd;intmain(){intn;cin>>n;vector>image(n,vector(n));inttop=n,
小白python系列-三个数最大值
摘要:解题思路:小白都能看懂系列=v=参考代码:a,b,c=map(int,input().split())if a>b: if a>c: &……
第一个HelloWorld程序
摘要:解题思路:这一道题只需要输出就可以了。注意事项:1.头文件很容易用错,一定要注意头文件。2.一定要记得输出*参考代码://cout#include<bits/stdc++.h>//……