笑川不吃香菜
笑川不吃香菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
笑川不吃香菜的博客
全部文章
(共145篇)
题解 | #进制转换#
#include <iostream> using namespace std; int main() { int n; while(cin>>hex>>n) cout<<dec<<n<<end...
2024-03-09
0
195
题解 | #八进制#
#include <bits/stdc++.h> using namespace std; void toOct(int n){ vector<int>v; while(n!=0){ v.push_back(n%8); n/=...
2024-03-09
0
159
题解 | #进制转换#
import java.util.Scanner; import java.math.BigInteger; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[]...
2024-03-09
0
159
题解 | #二进制数#
#include <bits/stdc++.h> using namespace std; void toBinary(unsigned int n){ vector<int>v; while(n!=0){ v.push_back(n%2);...
2024-03-09
0
178
题解 | #完数VS盈数#
#include <bits/stdc++.h> using namespace std; vector<int> getFactor(int n){ vector<int>v; for(int i =1;i<n;i++){ ...
2024-03-08
0
183
题解 | #字符串匹配#
挖个坑,只写了一个中括号情况下的... #include <cctype> #include <string> #include <vector> #include <iostream> using namespace std; string mak...
2024-03-08
0
237
题解 | #后缀子串排序#
#include <bits/stdc++.h> using namespace std; int main() { string s; while(getline(cin,s)){ vector<string>v; for(...
2024-03-08
0
173
题解 | #浮点数加法#
import java.util.Scanner; import java.math.BigDecimal; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[]...
2024-03-08
0
201
题解 | #首字母大写#
#include <bits/stdc++.h> using namespace std; bool isBlank(char c){ if(c == ' ' || c == '\t' || c == '\r' || c == '\n')return 1; return...
2024-03-08
0
178
题解 | #单词替换#
#include <bits/stdc++.h> using namespace std; int main() { string s,target,replacer; while(getline(cin,s)){ //输入 cin>...
2024-03-08
0
184
首页
上一页
6
7
8
9
10
11
12
13
14
15
下一页
末页