主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
orderrr
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
34
发帖
0
笔记
0
Ta的粉丝
109
关注数
0
粉丝数
109
获赞数
7
阅读数
19278
N阶楼梯上楼问题 题解:c语言解 。 要注意数量大了之后就超出int的范围了,要用long long 来初始化数组
#include <stdio.h> int f(int x) { if (x == 0 || x == 1) { return 1; } else { return f(x - 1)...
P1413
2024年3月25日 15:45
回复 0
|
赞 0
|
浏览 513
细菌的繁殖 题解:c语言
#include <stdio.h> int main() { int m; scanf("%d", &m); while (m > 0) { int x; scanf("%d",...
P1033
2024年3月24日 17:10
回复 0
|
赞 0
|
浏览 565
正整数分解质因数 题解:c语言求解
#include <stdio.h> #include <math.h> int isZhi(int x) { int flag = 1; for (int i = 2; i <= sqrt(x); i++) { ...
P1885
2024年3月22日 17:10
回复 0
|
赞 0
|
浏览 351
日期差值 题解:c语言解决
#include <stdio.h> #include <string.h> int month[2][13] = { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31...
P1290
2024年3月21日 15:35
回复 0
|
赞 0
|
浏览 536
删除字符串 题解:c 语言解决
#include <stdio.h> #include <string.h> int main() { char s[101]; scanf("%s", s); int i = 0; while (s[i] !=...
P1026
2024年3月18日 18:12
回复 0
|
赞 1
|
浏览 620
0和1的个数 题解:c解决 送分题
#include <stdio.h> int main() { int n; int num[32] = {0}; while (scanf("%d", &n) != EOF) { int index =...
P1008
2024年3月15日 15:54
回复 0
|
赞 1
|
浏览 497
01序列 题解:c语言求解
#include <stdio.h> #include <string.h> char s[6]; void reverse(char s[]) //翻转字符数组 { for (int i = 0; i < strlen(s) / 2; ...
P1001
2024年3月11日 17:39
回复 0
|
赞 0
|
浏览 672
单链表 题解:c 解决
#include <stdio.h> #include <malloc.h> #include <stdlib.h> struct Node { int Element; // 节点中的元素为整数类型 stru...
P1015
2024年3月10日 17:31
回复 0
|
赞 0
|
浏览 759
括号匹配问题 题解:c语言 解决,帮我看看就对了66percent
#include <stdio.h> #include <string.h> int main() { char s[105]; while (scanf("%s", s) != EOF) { // 用栈存 没有匹配的左括号的...
P1296
2024年3月6日 16:18
回复 0
|
赞 0
|
浏览 446
01字符串 题解:c
#include <stdio.h> int f(int n) { if (n == 0 || n == 1) { return 1; } else { return f(n - 1)...
P1479
2024年3月5日 16:28
回复 0
|
赞 0
|
浏览 524
求三角形的面积 题解:c,利用海伦公式
#include <stdio.h> #include <math.h> double len(int x1, int y1, int x2, int y2) { return sqrt((double)(x2 - x1) * (x2 - x...
P1125
2024年3月5日 15:40
回复 0
|
赞 0
|
浏览 537
素数 题解:c语言,解决最后一个素数没空格,用数组,最后一个元素不用空格
#include <stdio.h> #include <math.h> int main() { int n; while (scanf("%d", &n) != EOF) { if (n &l...
P1375
2024年3月4日 15:50
回复 0
|
赞 0
|
浏览 482
素数判定 题解:c 多谢评论区的指正,需要提前判断a,b谁大谁小
#include <stdio.h> #include <math.h> int main() { int a, b; while (scanf("%d %d", &a, &b) != EOF) { ...
P1102
2024年3月4日 15:17
回复 0
|
赞 0
|
浏览 420
素数判定 - 哈尔滨工业大学 题解:c
#include <stdio.h> #include <math.h> int main() { int n; while (scanf("%d", &n) != EOF) { int flag...
P1355
2024年3月4日 15:00
回复 0
|
赞 0
|
浏览 761
身份证校验 题解:c
#include <stdio.h> #include <string.h> int main() { char ch[20]; int num[17] = {7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 1...
P1722
2024年3月2日 17:51
回复 0
|
赞 0
|
浏览 795
买房子 题解:c语言
#include <stdio.h> int main() { int m; double n; while (scanf("%d %lf", &m, &n) != EOF) { int pr...
P1244
2024年3月2日 16:38
回复 0
|
赞 0
|
浏览 533
反转公约数 题解:c解决。
#include <stdio.h> int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } int rever...
P1911
2024年3月2日 15:32
回复 0
|
赞 0
|
浏览 419
最大公约数 题解:c解题
#include <stdio.h> int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } int main(...
P1353
2024年3月2日 15:25
回复 0
|
赞 0
|
浏览 384
最大公约数1 题解:c解题 首先排序,然后去除0,n-1的值进行求解
#include <stdio.h> void sort(int num[], int n) { for (int i = 0; i < n; i++) { int min = i; for (int j =...
P1426
2024年3月2日 15:23
回复 0
|
赞 0
|
浏览 501
最大公约数和最小公倍数 题解:c语言解法,最小公倍数 = n*m / (n与m的最大公约数)
#include <stdio.h> int gcd(int n, int m) { if (m == 0) { return n; } else { return gcd(m, ...
P1041
2024年3月2日 15:15
回复 0
|
赞 0
|
浏览 483
1
2
本科学校:河南工程学院
目标学校:信阳师范大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!