主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
FIVEszc
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
19
发帖
0
笔记
2
Ta的粉丝
98
关注数
0
粉丝数
98
获赞数
3
阅读数
9840
日期累加 题解:每次都判断下是闰年还是平年,题目不难但有坑
#include <bits/stdc++.h> using namespace std; int month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int main() { int m; scanf("...
P1446
2024年3月16日 18:13
回复 0
|
赞 1
|
浏览 742
括号匹配 题解:求大佬解惑,显示runtime error,75%数据通过
#include <bits/stdc++.h> using namespace std; int main() { stack <char> mystack; char s[1000]; int tag=0; sca...
P1501
2024年3月15日 16:05
回复 4
|
赞 1
|
浏览 557
素数判定 - 哈尔滨工业大学 题解:C 暴力
#include <bits/stdc++.h> using namespace std; int main() { int num; while (scanf("%d",&num)!=EOF){ int tag=0; if(num...
P1355
2024年3月15日 19:55
回复 0
|
赞 0
|
浏览 466
偷菜时间表 题解:
#include<stdio.h> int main() { int n; scanf("%d",&n); for(int i=0;i<n;i++) { int hour,min; scan...
P1053
2024年3月15日 17:36
回复 0
|
赞 0
|
浏览 469
素数判定 题解:简洁易懂
#include <bits/stdc++.h> using namespace std; int main() { int a,b; while(scanf("%d %d",&a,&b)!=EOF){ int cnt=0; ...
P1102
2024年3月15日 16:21
回复 0
|
赞 0
|
浏览 457
完数VS盈数 题解:简单好懂的办法
#include <bits/stdc++.h> using namespace std; int main() { int num=2; int E[3],G[15],j=0,k=0; for(;num<=60;num++) { int...
P1170
2024年3月14日 15:47
回复 0
|
赞 0
|
浏览 365
删除字符串 题解:C++
#include <bits/stdc++.h> using namespace std; int main() { char s[100]; fgets(s,100,stdin); string str=s; while(str.fin...
P1026
2024年3月13日 20:58
回复 0
|
赞 0
|
浏览 561
字母频率 题解:C++
#include <bits/stdc++.h> using namespace std; typedef struct table{ char a; int count; }; char ...
P1019
2024年3月13日 20:51
回复 0
|
赞 0
|
浏览 511
素数 题解:简单易懂的办法
#include <bits/stdc++.h> using namespace std; int main() { int num; int tag=0; while(scanf("%d",&num)!=EOF){ for(int i=...
P1375
2024年3月13日 16:54
回复 0
|
赞 1
|
浏览 465
二进制数 题解:C++
#include <bits/stdc++.h> using namespace std; int main() { int num[32]={0}; unsigned int a; int i=0; scanf("%d",&a);...
P1380
2024年3月11日 23:38
回复 0
|
赞 0
|
浏览 405
随机数 题解:C++
#include <bits/stdc++.h> using namespace std; int main() { srand(time(NULL)); int i,sum=0,s=0; for(;i<5;i++) { ...
P1009
2024年3月11日 23:29
回复 0
|
赞 0
|
浏览 618
翻转数的和 题解: 实质就是拆分每个数
#include<bits/stdc++.h> using namespace std; int main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF){ int c=0,d=0; wh...
P1003
2024年3月11日 20:52
回复 0
|
赞 0
|
浏览 489
首字母大写 题解: C++
#include <bits/stdc++.h> using namespace std; int main() { char s[100]; int i; fgets(s,100,stdin); int len=strlen(s); ...
P1240
2024年3月11日 18:34
回复 0
|
赞 0
|
浏览 575
排序 - 华科 题解:C++ sort函数解题
#include <bits/stdc++.h> using namespace std; int main() { int num[100]; int n,i; scanf("%d",&n); for(i=0;i<n;i+...
P1399
2024年3月10日 11:39
回复 0
|
赞 0
|
浏览 458
整数奇偶排序 题解:C++
#include <bits/stdc++.h> using namespace std; bool comp (int lhs,int rhs) { if(lhs%2&&rhs%2&&lhs>rhs) r...
P1248
2024年3月10日 11:21
回复 0
|
赞 0
|
浏览 405
成绩排序2.0 题解:C++
#include <bits/stdc++.h> using namespace std; typedef struct student { int num; int grade; }; bool comp (student lhs,student ...
P1159
2024年3月10日 10:50
回复 0
|
赞 0
|
浏览 564
成绩排序 题解:C++ 不使用stable_sort的一种思路
#include <bits/stdc++.h> using namespace std; struct student{ char name[20]; int grade; int seq; } ; bool comp1(student...
P1151
2024年3月9日 22:23
回复 0
|
赞 0
|
浏览 459
日期计算 题解:C 显示50%不通过,有无大佬帮看一下
#include <stdio.h> typedef struct data { int year; int month; int day; }dat; int mon[13]...
P1051
2024年3月8日 21:10
回复 3
|
赞 0
|
浏览 623
打印日期 题解:C 显示60%通过,求大佬帮我看看哪里的问题
#include <stdio.h> int main() { int y,n; while(scanf("%d %d",&y,&n) != EOF){ int d,month=1,i=1; int mon[13]={0,31,28,31,...
P1410
2024年3月8日 22:10
回复 1
|
赞 0
|
浏览 651
本科学校:山西大同大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!