主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Cookie‘s AE86
日拱一卒无有尽,功不唐捐终入海
关注
发消息
文章
0
题解
61
发帖
0
笔记
0
Ta的粉丝
137
关注数
0
粉丝数
137
获赞数
18
阅读数
38341
日期差值 题解:c++实现
#include<bits/stdc++.h> using namespace std; //判断是否是闰年 bool judge(int year){ if(year % 4 == 0 ){ if(year % 100 == 0){ ...
P1290
2024年3月12日 21:51
回复 0
|
赞 0
|
浏览 749
成绩排序 题解:用c++的stable_sort()写的,正确率只有66,哪里错了,家人们
#include<bits/stdc++.h> using namespace std; typedef struct node{ string name; int score; }cj; bool cmp_dec(cj a,cj b){...
P1151
2024年3月8日 18:09
回复 3
|
赞 0
|
浏览 516
字符分类 题解:c++实现
#include<bits/stdc++.h> using namespace std; int main(){ string s; string number; string alph; string other; c...
P1016
2024年3月9日 14:43
回复 0
|
赞 0
|
浏览 429
求大佬帮我康康哪里有问题,准确率只有75
#include<bits/stdc++.h> using namespace std; const int N = 1e5 + 10; int str[N] = {0}; //0表示是素数 int primenumber[N]; int pncount ...
P1156
2024年3月2日 16:04
回复 1
|
赞 0
|
浏览 695
求S(n) 题解:C++实现
#include<bits/stdc++.h> using namespace std; int main( ){ int n; while(scanf("%d" ,&n) != EOF){ int ans = 1; for(in...
P1500
2024年2月22日 16:11
回复 0
|
赞 1
|
浏览 686
C++,偷懒简洁高效版,直接用reverse()、replace()函数一步搞定字符串的翻转和替换
#include<bits/stdc++.h> using namespace std ; int main(){ int n ; //指令条数 string s ; //字符串 string instruct ; ...
P1387
2024年2月2日 12:08
回复 0
|
赞 4
|
浏览 919
进制转换3 题解:C++实现
#include<bits/stdc++.h> using namespace std; int main( ){ int m ,n; string x; cin >> m >> n ; cin >&...
P1422
2024年1月17日 11:07
回复 4
|
赞 0
|
浏览 1.5k
查找学生信息 题解:map解法
#include<bits/stdc++.h> using namespace std ; int main( ){ int N ; //读者人数 int M ; //书本数量 while(scanf("%d %...
P1177
2024年1月30日 10:47
回复 0
|
赞 1
|
浏览 772
字符串排序2 题解:用两个数组分别记录字母,和非字母的下标,将字母排序后,利用两个数组决定输出顺序
#include<bits/stdc++.h> using namespace std ; /* 规则2的要求在算法上表现是排序具有稳定性 */ int tfo(char a) ; bool cmp(char a ,char b); int mai...
P1255
2024年1月28日 11:06
回复 0
|
赞 1
|
浏览 832
国名排序 题解:sort()函数实现
#include <bits/stdc++.h> using namespace std ; bool cmp(string a ,string b){ if(a[0] == b [0]){ if(a[1] == b[1]){ ...
P1217
2024年1月24日 11:29
回复 0
|
赞 0
|
浏览 741
字符串排序 题解:sort实现
sort()函数可以直接实现对字符串的排序,也可以实现对字符串数组按字典次序排序 #include <bits/stdc++.h> using namespace std ; int main( ){ char c [20] ; cin >...
P1254
2024年1月24日 11:28
回复 0
|
赞 2
|
浏览 796
成绩排序2.0 题解:sort函数实现
#include <bits/stdc++.h> using namespace std ; typedef struct student{ //定以结构体 int id ; //学号 int score ; //成绩 } Studen...
P1159
2024年1月23日 14:37
回复 0
|
赞 1
|
浏览 675
打印日期 题解:大佬帮我康康哪里错了
#include<bits/stdc++.h> using namespace std ; //判断是否是闰年 bool judge(int year){ if(year % 4 == 0 ){ &...
P1410
2024年1月18日 16:00
回复 1
|
赞 1
|
浏览 623
日期类 题解:C++实现
需注意 (1)日进位:一个月的最后一天加一天后日变为1月份加1,例如:1999 11 30; (2)月进位:月加1后若变为13月需要将月份变为1,年份加1,例如:1999 12 31; #include<bits/stdc++.h> using ...
P1437
2024年1月18日 16:25
回复 0
|
赞 1
|
浏览 684
八进制 题解:printf语句实现
#include<bits/stdc++.h> using namespace std; int main( ){ int s; while(cin >> s){ printf("%o\n",s); } }
P1417
2024年1月18日 09:22
回复 0
|
赞 0
|
浏览 670
日期 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int month ,day; int days = 0; cin >> month >> day ;...
P1011
2024年1月17日 14:33
回复 0
|
赞 0
|
浏览 964
杨辉三角形 - 西北工业大学 题解:C++实现
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; int triangle [n][n]; int i ,j ; ...
P1392
2024年1月17日 10:55
回复 0
|
赞 0
|
浏览 841
八进制 题解:C++实现
#include<bits/stdc++.h> using namespace std; int main( ){ int s; while(cin >> s){ char ans[999999]; i...
P1417
2024年1月17日 10:55
回复 0
|
赞 1
|
浏览 767
首字母大写 题解:C++
#include<bits/stdc++.h> using namespace std; int main(){ char s[100]; int judge ; while( gets(s)){ judge = 1;...
P1240
2024年1月17日 10:53
回复 0
|
赞 1
|
浏览 759
A+B问题 题解:c++
#include<bits/stdc++.h> using namespace std; int main(){ int a ,b; cin >>a >>b; cout << a+b; retu...
P1000
2024年1月17日 10:52
回复 0
|
赞 1
|
浏览 1.2k
1
2
3
4
本科学校:湖北师范大学
目标学校:华中农业大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!