主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
Xsw777
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
11
发帖
0
笔记
0
Ta的粉丝
0
关注数
0
粉丝数
0
获赞数
67
阅读数
1133
切牌、洗牌 题解:纯C语言 简单易懂
#include <stdio.h> void qiepai(int a[],int n){ int q[8] = {0}; int i; int j = ...
P1937
2025年3月12日 14:48
回复 0
|
赞 1
|
浏览 4
重复数字是否出现 题解:纯C语言
#include <stdio.h> int main(){ long n; scanf("%ld",&n); int a[10] ...
P5202
2025年3月12日 14:00
回复 0
|
赞 1
|
浏览 15
字母统计 题解:纯C语言 简单好理解
#include <stdio.h> #include <string.h> int main(){ char a[10000] = {0}; while(gets(a)){ &nbs...
P1292
2025年3月12日 09:54
回复 0
|
赞 4
|
浏览 28
连续合数段 题解:纯C语言
#include <stdio.h> #include <math.h> int IsNum(int n){ if(n<2) return 0...
P1493
2025年3月11日 14:35
回复 0
|
赞 1
|
浏览 16
骑车路线 题解:为什么只通过了25% 佬们
#include <stdio.h> int main(){ int n; while(scanf("%d",&n) != EOF){ &nbs...
P1737
2025年3月9日 14:39
回复 2
|
赞 4
|
浏览 71
最大连续子序列 题解:简单好理解,纯C语言
#include <stdio.h> int max(int a,int b){ return a>b?a:b; } int main(){ int n; ...
P1334
2025年3月9日 20:29
回复 0
|
赞 3
|
浏览 75
二元组整数 题解:佬们看看为什么通过率33%
#include <stdio.h> void BubbleSort(int a[],int n){ int i,j,temp,flag; for(i=0;i<n-1;i++){ &nbs...
P1024
2025年3月4日 10:59
回复 5
|
赞 14
|
浏览 179
链表合并 题解:c实现链表合并
#include <stdio.h> #include <stdlib.h> typedef struct LNode{ int data; struct LNode* next; ...
P1025
2025年3月3日 17:35
回复 0
|
赞 8
|
浏览 159
字母频率 题解:纯数组 C语言写法 很好理解
#include <stdio.h> #include <string.h> int main(){ char a[1000] = {0}; gets(a); ...
P1019
2025年3月3日 16:03
回复 0
|
赞 7
|
浏览 124
击鼓传花 题解:尾插法循环单链表(纯C)
#include <stdio.h> #include <stdlib.h> typedef struct LNode{ int data; struct LNode* next; ...
P1018
2025年3月3日 14:44
回复 0
|
赞 14
|
浏览 248
单链表 题解:用单链表的冒泡排序 C语言
#include <stdio.h> #include <stdlib.h> typedef struct Node{ int data; struct Node* next; }LN...
P1015
2025年3月3日 10:21
回复 0
|
赞 10
|
浏览 214
本科学校:贵州财经大学
目标学校:贵州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!