混子代码你值得拥有! 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ char arr[4] = {0}; for(int i …… 题解列表 2023年12月26日 0 点赞 0 评论 103 浏览 评分:0.0
指针遍历,分类记录 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; g…… 题解列表 2023年12月26日 0 点赞 0 评论 113 浏览 评分:0.0
结构体之成绩记录(java类) 摘要:多的不说,直接上代码import java.util.Scanner; class Grade{ int oneSub; int twoSub; int thre…… 题解列表 2023年12月27日 0 点赞 0 评论 106 浏览 评分:0.0
题解 2848: 基因相关性 摘要: #include using namespace std; int e; double c,z; char a[510],b[510]; in…… 题解列表 2023年12月27日 0 点赞 0 评论 134 浏览 评分:0.0
题解 2876: 矩阵交换行 摘要: #include using namespace std; int n,m; int a[6][6]; int main(){ for(in…… 题解列表 2023年12月27日 0 点赞 0 评论 204 浏览 评分:0.0
题解 2851: 合法C标识符 摘要: #include using namespace std; int n; char a[200],m[200]; int main() { …… 题解列表 2023年12月27日 0 点赞 0 评论 174 浏览 评分:0.0
最大匹配的数学证明 摘要:当数组a是递增排序,而数组b是递减排序时;或者数组a是递减排序,而数组b是递增排序时,结果最大。首先,这两种情况呈现一个对称关系,不妨证明前者——当数组a是递增排序,而数组b是递减排序时,结果最大。证…… 题解列表 2023年12月27日 0 点赞 0 评论 315 浏览 评分:0.0
运用移位运算将更相减损术与移位结合(stein算法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int gcd(int a,int b){ if(a<b){ a=a^b; b=a^b; …… 题解列表 2023年12月28日 0 点赞 0 评论 96 浏览 评分:0.0
图像相似度 摘要:解题思路:注意事项:参考代码:h,l=map(int,input().split())ls1=[]ls2=[]for i in range(h): ls1.append(list(map(int…… 题解列表 2023年12月28日 0 点赞 0 评论 121 浏览 评分:0.0
c代码记录之结构体成绩统计 摘要:第一次练习结构体,略显生涩 #include struct student{ char xuehao[10],name[10]; int a,b…… 题解列表 2023年12月29日 0 点赞 0 评论 188 浏览 评分:0.0