帅呆呆~
帅呆呆~
全部文章
题解
归档
标签
去牛客网
登录
/
注册
帅呆呆~的博客
全部文章
/ 题解
(共41篇)
题解 | #a+b#
#include<iostream> #include<cstdio> using namespace std; int main(){ int a; int b; while(scanf("%d%d",&a,&b) != EOF)...
C++
2022-03-09
0
470
题解 | #a+b#
#include <iostream> #include <cstdio> #include <string> #include <cstring> using namespace std; const int MAXN = 10000; str...
C++
2022-03-09
4
435
题解 | #矩阵转置#
#include<cstdio> #include<iostream> using namespace std; const int MAXN = 100 + 10; struct Matrix { int row; int col; int matrix[MAX...
C++
2022-03-08
2
433
题解 | #素数判定#
#include<iostream> #include<cstdio> #include<cmath> using namespace std; bool IsPrimeNumber(int number) { if(number < 2) { r...
C++
2022-03-08
0
383
题解 | #进制转换2#
#include<iostream> #include<cstdio> #include<stack> using namespace std; int CharToInt(char c){ if(c >= '0' && c <=...
C++
2022-03-08
1
394
题解 | #八进制#
#include<iostream> #include<cstdio> #include<stack> using namespace std; //数字转字符,因为当目标进制大于10进制时,需要将数字转换成字符 char IntToChar(int targ...
C++
2022-03-08
0
440
题解 | #八进制#
#include<iostream> #include<cstdio> #include<stack> using namespace std; void Convert(int number,int target) { //target为目标进制 st...
C++
2022-03-08
0
407
题解 | #特殊乘法#
#include<iostream> #include<cstdio> #include<string> #include<cstring> using namespace std; int number[128]; //定义数组,统计字符串2...
C++
2022-03-07
0
371
题解 | #特殊乘法#
#include<iostream> #include<cstdio> #include<string> using namespace std; int main() { string str1; string str2; while(cin >...
2022-03-07
3
358
题解 | #查找#
#include<iostream> #include<cstdio> #include<algorithm> #include<unordered_map> using namespace std; const int MAXN = 100 + ...
C++
2022-03-06
0
341
首页
上一页
1
2
3
4
5
下一页
末页