主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
lingdongyang
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
47
发帖
0
笔记
0
Ta的粉丝
109
关注数
0
粉丝数
109
获赞数
8
阅读数
28325
取模运算 题解:
#include<stdio.h> #include<string.h> //包括了大数加减法 int pow_mod(int x, int y, int z) { int ans = 1; x = x % z;//z为mod while (y &...
P5133
2024年3月13日 17:37
回复 0
|
赞 1
|
浏览 690
密码的翻译 题解:
#include<stdio.h> #include<string.h> int main() { //注意多组输入 char s[105] = {0}; while (scanf("%s", &s) != EOF) { int...
P3502
2024年3月12日 16:46
回复 2
|
赞 0
|
浏览 564
01字符串 题解:
#include<stdio.h> //1479 01字符串 厦门大学机试题 int fn(int n) { if (n == 1 || n == 0) { return 1; } else { return fn(n - 1)%2333333...
P1479
2024年3月11日 20:45
回复 0
|
赞 0
|
浏览 605
求三角形的面积 题解:
#include<stdio.h> #include<math.h> //1125 求三角形的面积 double z(double x1, double y1,double x2,double y2) { return sqrt((x1-x2)*(x1-...
P1125
2024年3月11日 20:01
回复 0
|
赞 0
|
浏览 698
素数判定 题解:
#include<stdio.h> #include<math.h> int main() { int a, b; while (scanf("%d%d", &a, &b) != EOF) { int cnt = 0; if ...
P1102
2024年3月10日 11:31
回复 0
|
赞 0
|
浏览 512
素数判定 - 哈尔滨工业大学 题解:
#include<stdio.h> #include<math.h> int main() { int n = 0; while (scanf("%d", &n) != EOF) { if (n <= 1) { printf(...
P1355
2024年3月10日 11:07
回复 0
|
赞 0
|
浏览 368
判断素数 题解:
#include<stdio.h> #include<math.h> //1013 判断素数 int main() { int n = 0; while (scanf("%d", &n) != EOF) { if (n <= ...
P1013
2024年3月10日 10:56
回复 0
|
赞 0
|
浏览 508
进制转换问题 题解:
#include<stdio.h> int main(){ int n; scanf("%d", &n); int s[105]; int cnt = 0; while (n) { s[cnt] = n % 2...
P4967
2024年3月9日 15:27
回复 0
|
赞 0
|
浏览 503
三角形判定 题解:
#include<stdio.h> int main() { int x = 0; scanf("%d", &x); while (x--) { int a, b, c; scanf("%d%d%d", &a, &b, &...
P2018
2024年3月9日 15:15
回复 0
|
赞 0
|
浏览 600
求斐波那契数列的第n项 题解:
#include<stdio.h> int f(int n) { if (n == 0) return 1; else if (n == 1) return 1; else return f(n - 1) + f(n - 2); } int main() { ...
P2013
2024年3月8日 21:25
回复 0
|
赞 0
|
浏览 488
最大公约数和最小公倍数 题解:C
#include<stdio.h> int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } in...
P1041
2024年3月8日 20:50
回复 0
|
赞 0
|
浏览 467
最大公约数1 题解:
#include<stdio.h> int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } int main() { int n; scanf("%d", &am...
P1426
2024年3月8日 20:45
回复 0
|
赞 0
|
浏览 488
最大公约数 题解:
#include<stdio.h> int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } int main() { int x, y; scanf("%d%d...
P1353
2024年3月8日 20:33
回复 0
|
赞 0
|
浏览 473
最简真分数 题解:
#include<stdio.h> int gcd(int a, int b) { if (b == 0) return a; else return gcd(b, a % b); } int main() { int n = 0; whi...
P1180
2024年3月7日 21:09
回复 0
|
赞 0
|
浏览 478
求S(n) 题解:C
#include<stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { int sum = 0; sum = sum + (n % 3 * n % 3 * n % 3 *...
P1500
2024年3月7日 17:17
回复 0
|
赞 0
|
浏览 553
字符串转化 题解:
#include<stdio.h> #include<string.h> #include<stdlib.h> //2020 字符串转化 int main() { char s[105]; while (scanf("%s", &...
P2020
2024年3月7日 10:39
回复 0
|
赞 0
|
浏览 682
字符串翻转 题解:C
#include<stdio.h> #include<string.h> #include<stdlib.h> int main() { char s[105]; scanf("%s", &s); int len = str...
P1006
2024年3月7日 10:18
回复 0
|
赞 0
|
浏览 698
查找第K小数 题解:C
#include<stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { int s[1010]; int dan[10100] = { 0 };//存放只有单个数 fo...
P1383
2024年3月6日 17:40
回复 0
|
赞 0
|
浏览 670
大整数排序 题解:
#include<stdio.h> #include<string.h> int main() { //strcpy(a,b) 等同于 a = b; int n; while (scanf("%d", &n) != EOF) { c...
P1412
2024年3月6日 16:08
回复 0
|
赞 0
|
浏览 520
排序 - 华科 题解:C
#include<stdio.h> int main() { int n = 0; int s[105] = {0}; scanf("%d"...
P1399
2024年3月6日 15:40
回复 0
|
赞 0
|
浏览 417
1
2
3
本科学校:西南石油大学
目标学校:西南石油大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!