主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
lingdongyang
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
47
发帖
0
笔记
0
Ta的粉丝
109
关注数
0
粉丝数
109
获赞数
8
阅读数
28332
字符串排序 题解:c
#include<stdio.h> #include<string.h> #include<stdlib.h> int sortstring(const void* elem1, const void* elem2) { return st...
P1254
2024年3月6日 10:55
回复 0
|
赞 0
|
浏览 392
整数奇偶排序 题解:
#include<stdio.h> int k1 = 0;//偶数个数 int k2 = 0;//奇数个数 int main() { int s[105]; int j[105];//奇数 int o[105];//偶数 for (int i =...
P1248
2024年3月5日 21:04
回复 0
|
赞 0
|
浏览 587
国名排序 题解:
#include<stdio.h> #include<string.h> #include<stdlib.h> //用C语言的话,就主要考察二元字符数组那块的知识,因为只有这样才能在数组中存储多个字符串,因为字符串在C语言中就是以字符数组的形式存在...
P1217
2024年3月5日 20:24
回复 0
|
赞 0
|
浏览 424
排序 题解:C
#include<stdio.h> #include<stdlib.h> #include<string.h> //1010 排序 int sort(const void* elem1, const void* elem2) { retu...
P1010
2024年3月1日 16:42
回复 0
|
赞 0
|
浏览 775
删除字符串2 题解:C
#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char s[105]; char s_lower[105];//用来存放把输入的字符串全部变为小写 ...
P1027
2024年3月1日 11:40
回复 0
|
赞 1
|
浏览 485
删除字符串 题解:C
#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char s[105]; char s_lower[105];//全是小写的 int f[...
P1026
2024年2月29日 17:31
回复 0
|
赞 1
|
浏览 684
统计字符 题解:C
char s[10]; char ss[105]; int main() { while (gets(s)!=NULL) { if (strcmp(s,"#") == 0) {//字符串相比较 break;//比较是否输出#从而结束 } gets(ss...
P1320
2024年2月28日 18:50
回复 2
|
赞 0
|
浏览 692
1
2
3
本科学校:西南石油大学
目标学校:西南石油大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!