主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
光明守护神
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
49
发帖
0
笔记
0
Ta的粉丝
90
关注数
1
粉丝数
90
获赞数
9
阅读数
27288
输入和输出都可能有'X'
#include<iostream> using namespace std; int main() { string s; cin >> s; int n = 1; int sum = 0; for (auto t : s) { ...
P2000
2024年3月17日 16:10
回复 0
|
赞 1
|
浏览 621
一个奇数堆,一个偶数堆
#include<iostream> #include<queue> using namespace std; bool even(int n) { return !(n % 2); } int main() { priority_qu...
P1010
2024年3月17日 12:32
回复 0
|
赞 0
|
浏览 719
C++,我自己一步步通过遇到的错误,附加带注释的完整代码
1.N诺要求pow()的第2个参数必须是unsigned long long for (unsigned long long i = 0; i < s.size(); i++) { n += pow(10, s.size() - i - 1) * (s[i] - '...
P1023
2024年3月17日 12:20
回复 0
|
赞 0
|
浏览 533
C++
#include<iostream> #include<string> using namespace std; int main() { int n; cin >> n; string s; while (n) { ...
P1008
2024年3月17日 10:39
回复 0
|
赞 0
|
浏览 480
C++
#include<iostream> using namespace std; int main() { string s; cin >> s; int j = 0; for (auto i = s.begin(); j < s.si...
P1012
2024年3月17日 10:19
回复 0
|
赞 0
|
浏览 601
击鼓传花 题解:图解题目意思
1 2 3 4 5 1 2 3 4 5 1 2 4 5 1 2 4 5 1 2 4 1 2 4 1 4 1 4 4 用list写一个循环链表 #include <iostream> #include &l...
P1018
2024年3月10日 15:01
回复 2
|
赞 2
|
浏览 772
自己写一个merge(),实现将l2添加到l1
#include<iostream> #include<list> using namespace std; void my_merge(list<int>& l1, list<int> l2) { if (l1.em...
P1025
2024年3月16日 16:19
回复 0
|
赞 0
|
浏览 488
c++STL库里有链表合并函数merge()
#include<iostream> #include<list> using namespace std; int main() { list<int> l1; list<int> l2; int a, b, t; ...
P1025
2024年3月16日 15:58
回复 0
|
赞 0
|
浏览 601
80%的没用long。m转10,10转n。
#include <cmath> #include <iostream> #include <vector> using namespace std; /*m进制转十进制*/ long m_to_ten(int m, string s) ...
P1422
2024年3月15日 09:28
回复 0
|
赞 0
|
浏览 538
把2进制那题的2改成8就搞定了!
#include <iostream> #include <vector> using namespace std; int main() { auto n = 1000000; while (cin >> n) { vec...
P1417
2024年3月14日 21:27
回复 0
|
赞 0
|
浏览 447
二进制数 题解:C++
#include <iostream> #include <vector> using namespace std; int main() { auto n = 100000000; &nb...
P1380
2024年3月14日 21:24
回复 0
|
赞 0
|
浏览 382
大整数加法 题解:C++
#include<iostream> #include <string> using namespace std; int main() { string a, b; while (cin >> a >> b) { ...
P1474
2024年3月14日 20:04
回复 0
|
赞 0
|
浏览 562
进制转换2 题解:C++
#include <cmath> #include<iostream> using namespace std; int main() { string s; while (cin >> s) { int r = 0, j ...
P1259
2024年3月14日 18:25
回复 0
|
赞 0
|
浏览 660
删除字符串2 题解:C++
#include<iostream> using namespace std; int main() { string s; cin >> s; for (auto i = 0; i < s.size() - 2; i++) { ...
P1027
2024年3月13日 20:20
回复 0
|
赞 0
|
浏览 804
1 2 2结果为:(1,2) (2,2)
写的太差,不上代码
P1024
2024年3月10日 21:17
回复 0
|
赞 0
|
浏览 456
删除最大最小数 题解:不支持max_element和min_element函数,那我自己写!
#include<iostream> #include<vector> using namespace std; vector<int>::iterator new_max_element(vector<int>::iterator...
P1022
2024年3月10日 20:15
回复 0
|
赞 0
|
浏览 451
复数 题解:纯C++
#include<iomanip> #include <iostream> using namespace std; int main() { float a, ai, b, bi; char c; float r, ri; while ...
P1021
2024年3月10日 19:47
回复 0
|
赞 0
|
浏览 489
Aconly时间戳 题解:C++
#include <iomanip> #include <iostream> #include<string> using namespace std; int m[12] = { 31,28,31,30,31,30,31,31,30,31,...
P1545
2024年3月10日 16:20
回复 0
|
赞 0
|
浏览 390
幂次方 题解:X和N也要为long,不然直接错!
#include <iostream> using namespace std; long power(long x, long n) { x %= 233333; if (n == 1) return x; else if (n == 2) ...
P1017
2024年3月9日 22:13
回复 0
|
赞 0
|
浏览 794
字符分类 题解:C++
#include <iostream> #include <vector> using namespace std; void print(vector<char>v) { vector<char>::iterator it;...
P1016
2024年3月9日 21:51
回复 0
|
赞 0
|
浏览 380
1
2
3
本科学校:贵州大学
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!