友人帐在逃妖怪
友人帐在逃妖怪
全部文章
题解
归档
标签
去牛客网
登录
/
注册
友人帐在逃妖怪的博客
全部文章
/ 题解
(共10篇)
矩阵乘法
#include <iostream> #include <cstdio> using namespace std; struct Matrix { int matrix[3][3]; int row, col; Matrix(); Matrix(int ...
2021-03-07
0
637
通俗易懂暴力法最简真分数
#include <iostream> #include <cstdio> using namespace std; int n[601]; int GCD(int a, int b) { if (b == 0) { return a; } else {...
2021-03-02
0
733
数制转换
#include <iostream> #include <cstdio> #include <string> #include <algorithm> using namespace std; char IntToChar(int n) { ...
2021-03-02
0
711
8进制
#include #include #include using namespace std; char IntToChar(int target) { if (target < 10) { return target + '0'; } else { ...
2021-02-22
1
610
质数筛法 简单版
#include <iostream> #include <cstdio> #include <vector> using namespace std; const int MAXN = 10001; vector<int> prime; boo...
2021-02-22
4
755
素数判定
//素数判定 #include <iostream> #include <cstdio> #include <cmath> using namespace std; bool Judge(int n) { if (n < 2) { retu...
2021-02-21
0
600
辗转相除法求最大公约数
//求最大公约数 #include <iostream> #include <cstdio> using namespace std; int GCD(int a, int b) { if (b == 0) { return a; } else { ...
2021-02-21
0
664
堆栈的使用
改了好几次发现格式错误的地方 呜呜呜 #include <iostream> #include <cstdio> #include <stack> using namespace std; int main() { int n,m; char c; ...
2021-02-18
0
801
讨论中29行改进代码 解决5.3+5.6=0.9的问题
#include <iostream> #include <cstdio> #include <string> using namespace std; int main(){ ...
2021-02-16
15
935
代码
#include <iostream> #include <cstdio> #include <string> using namespace std; int main() { &nbs...
2021-02-15
0
609