主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
小王桐学
已上岸西南交通大学人工智能专业硕士
关注
发消息
文章
0
题解
145
发帖
0
笔记
1
Ta的粉丝
217
关注数
0
粉丝数
217
获赞数
25
阅读数
91697
进制转换 - 中南大学 题解:C
#include <stdio.h> void Reverse(int d) { int r = d%8; if(d >= 8) Reverse(d/8); printf("%d",r); } int main() { int T,d,i...
P1930
2024年3月16日 16:28
回复 0
|
赞 0
|
浏览 491
a与b得到c 题解:C
#include <stdio.h> int main() { int a,b,c; while(scanf("%d %d %d",&a,&b,&c) != EOF) { if(a + b == c) printf("Y...
P1821
2024年3月12日 22:23
回复 0
|
赞 1
|
浏览 550
元素位置 题解:C
#include <stdio.h> int main() { int n,a[1000],i,j,x; scanf("%d",&n); for(i = 0; i < n; i++) scanf("%d",&a[i]); sc...
P1767
2024年3月12日 22:07
回复 0
|
赞 0
|
浏览 505
整数排序 题解:C
#include <stdio.h> int Figure(int n)//求位数 { int i = 0; while(n) { i++; n/=10; } return i; } void Sort(int a[],int n...
P1905
2024年3月12日 22:04
回复 0
|
赞 0
|
浏览 615
整型存储 题解:C
#include <stdio.h> typedef struct IntC{ int Ob;//原来的int int Re;//反向的int }Intc; int Reverse(int n) { int s = 0; while(n) {...
P1440
2024年3月12日 21:51
回复 0
|
赞 0
|
浏览 482
链表合并 题解:C++题解
#include <stdio.h> #include <stdlib.h> typedef struct node{ int data; struct node *next; }LNode,*LinkList; //初始化链表 void ...
P1025
2024年2月5日 20:12
回复 1
|
赞 0
|
浏览 744
奇偶校验 题解:C
#include <stdio.h> void OddCheck(char *s) { char *p = s; while(*p != '\0') { int a[8] = {0},i = 7,n = *p,count = 0; //b获取十进制数,...
P1402
2024年3月11日 13:36
回复 0
|
赞 0
|
浏览 530
西交-希尔排序 题解:C
#include <stdio.h> void ShellSort(int a[],int n) { int i,j,dk; for(dk = n/2; dk >= 1; dk/=2) for(i = dk+1; i <= n; i++) ...
P1829
2024年3月11日 13:20
回复 0
|
赞 0
|
浏览 649
加减乘除 题解:C
#include <stdio.h> //阶乘 long long Factorial(int n) { long long i = 1,sum = 1; for(i = 1; i <= n; i++) sum *= i; return sum...
P1267
2024年3月11日 13:10
回复 0
|
赞 0
|
浏览 510
亚索请求出战 题解:C
#include <stdio.h> #include <math.h> int func(int a[],int n) { int max = 0,min = 0,i; for(i = 1; i < n; i++) { if(a[...
P1193
2024年3月11日 12:45
回复 0
|
赞 0
|
浏览 638
多项式的值 题解:C
#include <stdio.h> #include <math.h> long long Polynomial(int a[],int n,int x) { int i; long long sum = 0; for(i = 0; i &l...
P1436
2024年3月10日 19:18
回复 0
|
赞 0
|
浏览 513
命名法 题解:C
#include <stdio.h> #include <string.h> int main() { char s[100]; while(scanf("%s",s) != EOF) { char *p = s; while(*p...
P1854
2024年3月10日 19:02
回复 0
|
赞 0
|
浏览 444
成绩排序 - 西电 题解:C
#include <stdio.h> typedef struct{ int y,m,d,score; }XiaoM; void Sort(XiaoM x[],int n) { int i,j; XiaoM t; for(i = 0; i <...
P1733
2024年3月9日 22:57
回复 0
|
赞 0
|
浏览 703
计算天数 题解:C
#include <stdio.h> int CalDay(int y,int m,int d) { int i,a[12] = {31,28,31,30,31,30,31,31,30,31,30,31},sum = 0; if(y % 400 == 0 || ...
P1433
2024年3月9日 22:47
回复 0
|
赞 0
|
浏览 567
阶乘 - 北理工 题解:C
#include <stdio.h> long long Factorial(long long n) { long long i,f = 1; for(i = 1; i <= n; i++) f*=i; return f; } int ...
P1430
2024年3月9日 00:00
回复 0
|
赞 0
|
浏览 486
复制、剪切、粘贴 题解:C
#include <stdio.h> #include <string.h> //复制 void Copy(char *s,char *t,int l,int r) { char *p,*q; p = s; int i = 0; whil...
P1559
2024年3月8日 23:49
回复 0
|
赞 0
|
浏览 540
打印极值点下标 题解:C
#include <stdio.h> int main() { int k,a[80]; while(scanf("%d",&k) != EOF) { int i; for(i = 0; i < k; i++) scanf(...
P1237
2024年3月8日 19:28
回复 0
|
赞 0
|
浏览 516
矩阵最大值 题解:C
#include <stdio.h> int Max(int a[],int m,int *sum) { int i,max = 0; for(i = 1; i < m; i++) { if(a[max] < a[i]) max =...
P1407
2024年3月8日 19:22
回复 0
|
赞 0
|
浏览 439
单词个数统计 题解:C
#include <stdio.h> #include <string.h> int JudgeC(char c) { if((c >= 'a' && c <= 'z') || (c >= 'A' &&...
P1719
2024年3月8日 19:10
回复 0
|
赞 0
|
浏览 480
循环位移 题解:C
不动两字符串, 直接判断。 #include <stdio.h> #include <string.h> int main() { char s1[1000],s2[1000]; gets(s1); gets(s2); if(strl...
P1912
2024年3月8日 18:33
回复 0
|
赞 0
|
浏览 764
1
2
3
...
8
本科学校:宜宾学院
目标学校:西南交通大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!