题解列表
蓝桥杯算法提高VIP-质因数2(和质因数1一样)
摘要:```c
#include
int main()
{
int n;
scanf("%d", &n);
int i = 0, j = 0, max = n, cnt=0;//和质因数1……
蓝桥杯算法提高VIP-质因数(c语言)
摘要:```c
//这个算法是有规律的 就拿题目给的例子来说
//99=2*3*3*5
//从2开始遍历数组 每次找到他的第一个因子
//90/2=45 45/3=15 15/3=5 5/5=1 ……
2857: 加密的病历单
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
……
2939: 最匹配的矩阵
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
#include<math.h>
int SUM(int r,int s,int a[r][s],int b[r][s]){
……
编写题解 1097: 蛇行矩阵 不理解就找我 嘎嘎简单
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n = 0; int a[20][20] = { 0 }; i……