ysong想养只修狗
ysong想养只修狗
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ysong想养只修狗的博客
全部文章
(共63篇)
题解 | #n的阶乘#
#include <iostream> using namespace std; long long Factorial(long long n){ if(n >= 1) return n * Factorial(n - 1); else ...
2023-05-14
0
443
题解 | #又一版 A+B#
#include <iostream> #include <algorithm> using namespace std; int main() { long long a, b, c; int m; while (cin >> m ...
2023-05-13
0
226
题解 | #进制转换#
#include <iostream> using namespace std; int CharToInt(char c){ if(c >= '0' && c <= '9') return c - '0'; else return c - 'A' + ...
2023-05-13
0
232
题解 | #进制转换2#
#include <iostream> #include <vector> using namespace std; //思路:现将M进制转成10进制,在从10进制转成N进制 //当进制数大于10时,涉及到字符和数字之间的转换 int charToInt(char c){...
2023-05-11
0
258
题解 | #10进制 VS 2进制#
#include <iostream> #include <algorithm> using namespace std; string conversion(string num, int m, int n) { string ans = ""; int ...
2023-05-11
0
269
题解 | #二进制数#
#include <iostream> #include <utility> #include <vector> using namespace std; void getBinary(int x){ vector<int> v; wh...
2023-05-11
0
199
题解 | #找位置#
#include <iostream> #include <string> #include <vector> using namespace std; const int N = 101; string str; vector<int> pos[...
2023-05-06
0
253
题解 | #整数奇偶排序#
#include <iostream> #include <algorithm> using namespace std; const int N = 101; bool cmp(int a, int b){//关于cmp函数,当返回true时,a, b不交换顺序,当返回f...
2023-05-06
0
272
题解 | #打印日期#
#include <iostream> using namespace std; int month[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; bool judge(int y){ if(y % 400 ...
2023-05-05
0
232
题解 | #今年的第几天?#
#include <iostream> using namespace std; int month[13] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int sum[13]; bool judge(int y){/...
2023-05-05
0
266
首页
上一页
1
2
3
4
5
6
7
下一页
末页