zhehuii 2018-10-07 07:31 采纳率: 0%
浏览 1629

scanf输入数后输出的数为什么不一样?

#include
#include
#define LEN sizeof(struct Student)

struct Student //声明结构体
{int num;
int score;
struct Student *next;
};

int n;//全局变量

struct Student *creat(void);//声明函数
void print(struct Student *head);//声明函数

struct Student *creat(void) //定义函数
{struct Student *head;
struct Student *p1,*p2;
p1=p2=(struct Student *)malloc(LEN);
n=0;
head=NULL;
scanf("%d,%d",&p1->num,&p1->score);
fflush(stdin);
while(p1->num!=0)
{ n++;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(struct Student *)malloc(LEN);
scanf("%d,%d",&p1->num,&p1->score);
fflush(stdin);
}
p2->next=NULL;
return(head);
}

void print(struct Student *head) //定义输出函数
{struct Student *p;
printf("\nNow,These %d records are:\n",n);
p=head;
if(head!=NULL)
do
{printf("%d %d\n",p->num,p->score);
p=p->next;
}while(p!=NULL);
}

int main()//主函数
{struct Student *pt;
pt=creat();
print(pt);
return 0;
}图片说明

展开全部

  • 写回答

1条回答 默认 最新

  • threenewbee 2018-10-07 07:45
    关注

    程序没有问题,但是你输入的12和78之间(以及下面)的逗号是全角的,而你scanf里是半角的。

    评论
    编辑
    预览

    报告相同问题?

    悬赏问题

    • ¥15 使用okhttp分片上传文件,总是超时,到底是哪里的问题
    • ¥15 javaweb连接数据库,jsp文件加载不出来
    • ¥15 matlab关于高斯赛德尔迭代的应用编撰。(相关搜索:matlab代码|迭代法)
    • ¥15 pkg-types,vite,d
    • ¥15 损失匹配问题,求解答
    • ¥15 3500常用汉字书法体检测数据集下载
    • ¥15 odoo17在制造模块或采购模块良品与次品如何分流和在质检模块下如何开发
    • ¥15 Qt音乐播放器的音乐文件相对路径怎么写
    • ¥15 VB.NET利用摄像头拍照的程序
    • ¥15 linux下vscode设置不了字连体
    手机看
    程序员都在用的中文IT技术交流社区

    程序员都在用的中文IT技术交流社区

    专业的中文 IT 技术社区,与千万技术人共成长

    专业的中文 IT 技术社区,与千万技术人共成长

    关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

    关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

    客服 返回
    顶部