主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
渐鸿于陆
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
20
发帖
1
笔记
0
Ta的粉丝
76
关注数
0
粉丝数
76
获赞数
1
阅读数
13197
日期差值 题解:成功AC
#include<stdio.h> #include<stdlib.h> int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int day(int n){ i...
P1290
2024年3月23日 14:44
回复 1
|
赞 0
|
浏览 641
首字母大写 题解:好奇怪,同样的数据,dev运行出来的结果就是对的,怎么复制过来就输出结果只有一个首字母不对唉。附上我得程序代码和截图。
#include<stdio.h> #include<string.h> char s[105]; int main(void){ while(gets(s)){ &nbs...
P1240
2024年3月24日 16:39
回复 2
|
赞 0
|
浏览 1.3k
倒杨辉三角 题解:注意数组不能开太小,数组空间足够以后还要注意可能会必须用longlong,否则只能AC60%
#include<stdio.h> #include<string.h> long long dp[200][200]; long long yanghui(int i,int j){ if(dp[i][j]!=0){ ...
P1888
2024年3月27日 15:10
回复 0
|
赞 0
|
浏览 367
素数 题解:C语言
#include<stdio.h> #include<math.h> #include<string.h> int arr[105]; int main(void){ int n;  ...
P1375
2024年3月26日 14:19
回复 0
|
赞 0
|
浏览 723
日期计算 题解:有人能看看为啥ac50%吗
#include<stdio.h> struct node{ int year; int month; int day; }p; int main(vo...
P1051
2024年3月23日 17:46
回复 4
|
赞 0
|
浏览 564
日期累加 题解:成功AC,注意下年份增加了,要重新判断平闰年
#include<stdio.h> int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(void){ int m; ...
P1446
2024年3月24日 09:54
回复 0
|
赞 0
|
浏览 515
日期类 题解:成功AC,nice
#include<stdio.h> int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(void){ int year,month,day,n; ...
P1437
2024年3月23日 21:50
回复 0
|
赞 0
|
浏览 518
日期 题解:成功AC
#include<stdio.h> int days[13] = {0,0,0,0,30,31,30,31,31,30,31,30,31}; int count(int month,int day){ int num = 0; &nbs...
P1011
2024年3月23日 16:04
回复 0
|
赞 0
|
浏览 620
日期差值 题解:有人能看出有啥问题吗?
#include<stdio.h> #include<stdlib.h> int days[13] = {0,31,28,31,30,31,30,31,31,30,31,30,31}; int day(int n){  ...
P1290
2024年3月23日 11:41
回复 2
|
赞 0
|
浏览 621
十进制和二进制 题解:还是写不出来
#include<stdio.h> #include<string.h> char s[1005]; int arr[1005]; int ans[5000]; int convert(int arr[],int ans[],int len){ ...
P1176
2024年3月22日 18:01
回复 2
|
赞 0
|
浏览 582
加密算法 题解:C语言题解。一开始用的scanf,就发现错了,哈哈哈
#include<string.h> #include<stdio.h> int main(void){ char s[105]; gets(s); &nbs...
P1014
2024年3月21日 17:55
回复 0
|
赞 0
|
浏览 596
大整数加法 题解:C语言,用字符数组存储大数
#include<stdio.h> #include<string.h> char a[1005]; char b[1005]; char c[1005]; int _max(int a,int b){ re...
P1474
2024年3月21日 17:41
回复 0
|
赞 0
|
浏览 487
十进制和二进制 题解:用了 long long int,AC50%.应该是不够存储那么大的数。等会用数组存储看看;
#include"stdio.h" #include"string.h" int main(void){ int ans; long long int n;  ...
P1176
2024年3月17日 15:30
回复 1
|
赞 0
|
浏览 672
n个数的最小公倍数 题解:
#include<stdio.h> int getGCD(int a,int b); int doLCM(int *array,int size); int main(void){ int count; &n...
P3684
2024年3月17日 15:35
回复 0
|
赞 0
|
浏览 430
进制转换3 题解:
#include"stdio.h" #include"string.h" int main(void){ char cin[105]; int x,y; &...
P1422
2024年3月17日 13:08
回复 0
|
赞 0
|
浏览 631
字符串翻转 题解:
#include"stdio.h" #include"stdlib.h" #include"string.h" int main(void){ char s[105] = {0}; &n...
P1006
2024年3月16日 21:17
回复 0
|
赞 0
|
浏览 1.0k
进制转换问题 题解:c语言
#include"stdio.h" #include"string.h" int main(void){ int num= 0,i=0; int a[100] = {0}...
P4967
2024年3月6日 20:04
回复 0
|
赞 0
|
浏览 486
三角形判定 题解:
#include"stdio.h" int main(void){ int count = 0; int a[2000] = {0}; int b[20...
P2018
2024年3月5日 17:06
回复 0
|
赞 0
|
浏览 464
三角形判定 题解:
int main(void){ int count = 0; int a=0,b=0,c=0; scanf("%d",&count); &nbs...
P2018
2024年3月5日 17:03
回复 0
|
赞 0
|
浏览 306
三角形判定 题解:
#include <stdio.h> int main() { int T; scanf("%d", &T); while (T--) { ...
P2018
2024年3月5日 16:45
回复 0
|
赞 0
|
浏览 450
本科学校:无
目标学校:西南石油大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!