程序猿牛渴了
程序猿牛渴了
全部文章
分类
题解(13)
归档
标签
去牛客网
登录
/
注册
程序猿牛渴了的博客
全部文章
(共13篇)
题解 | #字符串加解密#
#include <bits/stdc++.h> using namespace::std; void trans(string &str, const uint flag) { string code = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghi...
C++
2022-01-05
0
437
题解 | #质数因子# C/C++
#include <bits/stdc++.h> using namespace::std; int main() { int i = 1; int num; cin >> num; if (1 == num) { cout << 1 << ...
C++
C
2022-01-01
0
374
题解 | #进制转换#
#include <bits/stdc++.h> using namespace::std; int main() { string str; while (getline(cin, str)) { uint64_t sum = 0; uint64_t bit = 0; ...
C++
2021-12-29
0
239
首页
上一页
1
2
下一页
末页