2939: 最匹配的矩阵 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int SUM(int r,int s,int a[r][s],int b[r][s]){ …… 题解列表 2023年04月20日 0 点赞 0 评论 592 浏览 评分:9.9
水仙花数判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; for(a=100;a<1000;a++) { b=…… 题解列表 2023年04月20日 0 点赞 0 评论 327 浏览 评分:9.9
编写题解 1097: 蛇行矩阵 不理解就找我 嘎嘎简单 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n = 0; int a[20][20] = { 0 }; i…… 题解列表 2023年04月20日 0 点赞 0 评论 296 浏览 评分:0.0
二级C语言-平均值计算 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a[10]; int i,sum=0,ang=0,temp=0;//定义初始化,及其计…… 题解列表 2023年04月20日 0 点赞 0 评论 549 浏览 评分:8.0
判断逗号的输出个数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ int N, M,count=0; int a[5000]; …… 题解列表 2023年04月19日 0 点赞 0 评论 273 浏览 评分:0.0
这个就是前几道题分数相加的变式 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(void){ double s = 1;//设初值为1,表示从1开始减 i…… 题解列表 2023年04月19日 0 点赞 0 评论 300 浏览 评分:0.0
蓝桥杯算法提高VIP-不同单词个数统计(C语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char arr1[1000],arr2[100][100]; …… 题解列表 2023年04月19日 0 点赞 0 评论 352 浏览 评分:0.0
tarjan + lca + 树上差分 摘要:# 思路 * 主要讲讲怎么在边上树上差分吧 具体的思路就是,将要查询`diff[u] +=1,diff[v] += 1, diff[lca]-=2`,然后 * 状态一  { …… 题解列表 2023年04月19日 0 点赞 0 评论 509 浏览 评分:9.9
1670: 拆分位数 摘要:解题思路:wu注意事项:wu参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; cout<<n…… 题解列表 2023年04月19日 0 点赞 0 评论 360 浏览 评分:9.9