首页 > 综合动态 >

源程序是什么软件(源程序是什么)

发布时间:2023-07-27 02:20:03来源:

关于源程序是什么软件,源程序是什么这个问题很多朋友还不知道,今天小六来为大家解答以上的问题,现在让我们一起来看看吧!

1、#include"stdio.h"#include"malloc.h"#define LEN sizeof(struct student)struct student{long int num;float score;struct student *next;};struct student *creat(void){struct student *head;struct student *p1,*p2;int n=0;p2=p1=(struct student*)malloc(LEN);printf("请输入学号和成绩: ");scanf("%ld%f",&p1->num,&p1->score);head=NULL;while(p1->num!=0){n=n+1;if(n==1) head=p1;else p2->next=p1;p2=p1;p1=(struct student*)malloc(LEN);printf("请输入学号和成绩: ");scanf("%ld%f",&p1->num,&p1->score);}p2->next=NULL;return(head);}void main(){struct student a,b,c;struct student *head,*p,*result;a.num=99101;a.score=89.5;b.num=99103;b.score=90;c.num=99107;c.score=85;head=&a;a.next=&b;b.next=&c;c.next=NULL;p=head;do{printf("%ld%5.lf",p->num,p->score);p=p->next;}while(p!=NULL);result = creat();do{printf("%ld%5.lf",result->num,result->score);result=result->next;}while(result!=NULL);}。

本文分享完毕,希望对大家有所帮助。

免责声明:本文为转载,非本网原创内容,不代表本网观点。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。