首页 新闻 会员 周边
1
回答数

回答被采纳 10 单链表DelList函数出了问题

#include<stdio.h> #include<stdlib.h> //定义单链表的数据类型 typedef struct book { char name[10]; char code[10]
1
回答数

已解决问题 10 单链表的length()函数出现问题

#include<stdio.h> #include<stdlib.h> //定义单链表的数据类型 typedef struct book{ char name[10]; int code; floa
2
回答数

已解决问题 c语言函数调用问题(输入10个整数找出所有素数并求和)

代码: include<stdio.h> int shu(int a) { int i,j; for(i=2;i<=a;i++){ j=a%i; if(j==0) return 0; else ret
1
回答数

已解决问题 5 c语言,结构体数组连续输出问题

这个是原代码,运行中途报错:字符串读写出错。请大神们帮忙看看 include<stdio.h> define M 3 include<string.h> struct book { char name