题解列表

筛选

连连看Python

摘要:n,m=map(int,input().strip().split())num=[list(map(int,input().split()))for _ in range(n)]sum=0……

1052: [编程入门]链表合并

摘要:思路比较简单,但相对应代码也比较长,共有七十行若您有改进的建议,欢迎与我交流参考代码:#include<iostream>using namespace std;struct ……

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,

第一个HelloWorld程序

摘要:解题思路:这一道题只需要输出就可以了。注意事项:1.头文件很容易用错,一定要注意头文件。2.一定要记得输出*参考代码://cout#include<bits/stdc++.h>//……