shininggirls01
shininggirls01
全部文章
分类
归档
标签
去牛客网
登录
/
注册
shininggirls01的博客
全部文章
(共49篇)
题解 | #10进制 VS 2进制#
#include <iostream> #include <vector> using namespace std; string Divide(string str, int x) { //x进制 int remainder = 0; for (int i ...
2024-02-15
0
178
题解 | #进制转换#
#include <iostream> #include<vector> //参考答案解法,磕磕绊绊,还不熟练 using namespace std; const int MaxNum = 30; string Divide(string str, int x) { ...
2024-02-05
0
152
题解 | #二进制数#
#include <iostream> #include<vector> using namespace std; int main() { unsigned int x = 0; //别丢int while (scanf("%d", &...
2024-02-02
0
134
题解 | #简单计算器#
#include <iostream> #include<stack> //参考答案解法,磕磕绊绊,还不熟练 using namespace std; int priority(char c) { if (c == '#') { //运算符栈 retu...
2024-02-02
0
186
题解 | #Zero-complexity Tran...#
#include <iostream> #include<stack> using namespace std; int main() { stack<long long> stack1; int Number = 0; while (s...
2024-02-01
0
146
题解 | #完数与盈数#
#include <iostream> #include<vector> using namespace std; vector<int> wanE; vector<int> yingG; int Sum(int x) { int sum = ...
2024-02-01
0
164
题解 | #字母统计#
#include <iostream> using namespace std; int main() { string str; int count; while (getline(cin, str)) { for (int j = 'A';...
2024-01-29
0
221
题解 | #统计字符#
#include <iostream> using namespace std; int main() { string str1, str2; char m = ' '; while (getline(cin, str1)) { getlin...
2024-01-29
0
159
题解 | #简单密码#
#include <iostream> using namespace std; //本题不是一下子输入一大段密文, //而是一行一行输入的 int main() { string str; while (getline(cin, str)) { { ...
2024-01-29
0
140
题解 | #密码翻译#
#include <iostream> using namespace std; int main() { string str; // while(getline(cin,str)){ // for(int i;i<str.size();i+...
2024-01-29
0
162
首页
上一页
1
2
3
4
5
下一页
末页