萌新求助:想做一个简单的管理程序,结果出现了异常
#include<stdio.h>#include<malloc.h>
struct student
{
char name;
float score;
};
void input(struct student*x,int y)
{
printf("name =");
scanf_s("%s", x.name , 128);
printf("score =");
scanf_s("%f", &x.score , 128);
}
void paix(struct student*a, int b)
{
int i, j;
struct student t;
for (i = 0; i < b - 1; ++i)
{
for (j = 0; j < 1 - i; ++j)
{
if (a.score < a.score)
{
t = a;
a = a;
a = t;
}
}
}
}
void output(struct student*a, int len)
{
printf("name =%s\n",a.name );
printf("score=%f\n",a.score);
}
int main(void)
{
int len, i,j;
struct student* date;
printf("请输入学生的人数:\n");
scanf_s("%d", &len,128);
//构建数组
date = (struct student*)malloc(sizeof(struct student)*len);
//输入
for (i = 0; i < len; ++i)
{
printf("请输入第%d个同学的信息\n", i+1);
input(date,i);
}
//排序
paix(date, len);
printf("\n\n");
//输出
for (j = 0; j < len; ++j)
{
output(date, j);
}
return 0;
}
程序可以执行,排序功能没办法实现,并且出现了异常
读取位置发生访问冲突 或者 触发断点
求求大佬帮帮我呀{:5_96:} paix函数的内层循环条件写错了,你把j<b-i错写成j<1-i了 for (j = 0; j < 1 - i; ++j) ==》》1-i应该是 j < b - i - 1吧 chxchxkkk 发表于 2020-5-18 13:19
for (j = 0; j < 1 - i; ++j) ==》》1-i应该是 j < b - i - 1吧
哦哦,是哈,谢谢大佬,不过还是异常 {:5_95:}
“读取位置 0xFEFEFEFE 时发生访问冲突”是怎么回事呀大佬{:5_94:} sunrise085 发表于 2020-5-18 11:28
paix函数的内层循环条件写错了,你把j
哦哦,是哈,谢谢大佬{:5_95:}
不过还是异常 “读取位置 0xFEFEFEFE 时发生访问冲突”
是怎么回事呀大佬{:5_94:} edve 发表于 2020-5-18 22:22
哦哦,是哈,谢谢大佬
不过还是异常 “读取位置 0xFEFEFEFE 时发生访问冲突”
是怎么回事呀大 ...
我不知道什么问题,
我用scanf读取输入的,运行正常,没遇到你所说的问题
scanf_s要安全一些,最多读取若干字符,比如:scanf_s("%d", &len,128);最多会读取128个字符(遇到回车会停止),然后赋值给len。
你的程序有有一点可能会有问题,就是name的输入,你定义的结构体中name数组长度为100,但是读取的时候长度写的是128.不知道会不会出问题。 sunrise085 发表于 2020-5-19 08:47
我不知道什么问题,
我用scanf读取输入的,运行正常,没遇到你所说的问题
scanf_s要安全一些,最多读取 ...
是这样的,谢谢大佬{:5_91:}
页:
[1]