shininggirls01
shininggirls01
全部文章
分类
归档
标签
去牛客网
登录
/
注册
shininggirls01的博客
全部文章
(共49篇)
题解 | #鸡兔同笼#
#include <iostream> using namespace std; int minCal(int feet) { int min = feet / 4; if (feet % 4 == 2) min++; return min; } int mai...
2024-03-29
0
162
题解 | #N的阶乘#
#include <iostream> #include<cstdio> #include<string> #include<cstring> using namespace std; const int MAXN = 10000; struct Bi...
2024-03-29
0
205
题解 | #a+b#
#include <iostream> #include<math.h> #include<cstdio> #include<string> #include<cstring> using namespace std; const int ...
2024-03-28
0
202
题解 | #矩阵幂#
#include <iostream> #include<cstdlib> #include<cstdio> using namespace std; struct Matrix { int row, col; int matrix[10][10]...
2024-03-27
0
201
题解 | #计算两个矩阵的乘积#
#include <iostream> #include<cstdio> using namespace std; struct Matrix { int matrix[3][3]; int row, col; Matrix(int r, int c)...
2024-03-27
0
167
题解 | #质因数的个数#
#include <iostream> #include<math.h> #include<vector> using namespace std; //判断是否为素数 bool isSuNum(int x) { if (x == 2 || x == 3...
2024-03-26
0
135
题解 | #素数#
#include <iostream> #include<math.h> using namespace std; //求素数 bool SuNum(int x) { bool tag0 = true; if (x == 2 || x == 3) { ...
2024-03-26
0
213
题解 | #最大公约数#
#include <iostream> using namespace std; //欧几里得算法 int GCD(int a, int b) { if (a == 0) { return b; } else if (b == 0) { ...
2024-03-26
0
157
题解 | #进制转换2#
#include <iostream> #include<string> #include<vector> using namespace std; //将M进制的数转换为N进制的数输出 //M>=2 N<=36 //本题注意如果进制大于10时,用字符...
2024-03-26
0
158
题解 | #素数判定#
#include <iostream> #include<string> #include<math.h> using namespace std; int main() { int a,tag=false; string str; wh...
2024-03-25
0
138
首页
上一页
1
2
3
4
5
下一页
末页