- 1
- 0
- 约8.8千字
- 约 13页
- 2018-05-16 发布于河南
- 举报
C 程序开发经典实例之八
C 程序开发经典实例之八
【程序71】
题目:编写input()和output()函数输入,输出5个学生的数据记录。
1.程序分析:
2.程序源代码:
??????????? #define N 5??????????? struct student??????????? {??????????? char num[6];??????????? char name[8];??????????? int score[4];??????????? } stu[N];??????????? input(stu)??????????? struct student stu[];??????????? { ??????????? int i,j;??????????? for(i=0;iN;I++)??????????? {????? printf(\n please input %d of %d\n,i+1,N);????? printf(num: );????? scanf(%s,stu[i].num);????? printf(name: );????? scanf(%s,stu[i].name);????? for(j=0;j3;j++)????? {????? printf(score %d.,j+1);????? scanf(%d,stu[i].score[j]);????? }????? printf(\n);??????????? }??????????? }??????????? print(stu)??????????? struct student stu[];??????????? { ??????????? int i,j;??????????? printf(\nNo. Name Sco1 Sco2 Sco3\n);??????????? for(i=0;iN;I++)??????????? {????? printf(%-6s%-10s,stu[i].num,stu[i].name);????? for(j=0;j3;j++)????? printf(%-8d,stu[i].score[j]);????? printf(\n);??????????? }??????????? }??????????? main()??????????? {??????????? input();??????????? print();??????????? }
【程序72】
题目:创建一个链表。
1.程序分析:
2.程序源代码:
??????????? /*creat a list*/??????????? #include stdlib.h??????????? #include stdio.h??????????? struct list??????????? {??????????? int data;??????????? struct list *next;??????????? };??????????? typedef struct list node;??????????? typedef node *link;??????????? void main()??????????? {??????????? link ptr,head;??????????? int num,i;??????????? ptr=(link)malloc(sizeof(node));??????????? ptr=head;??????????? printf(please input 5 numbers==\n);??????????? for(i=0;i=4;i++)??????????? {????? scanf(%d,num);????? ptr-data=num;????? ptr-next=(link)malloc(sizeof(node));????? if(i==4) ptr-next=NULL;????? else ptr=ptr-next;??????????? }??????????? ptr=head;??????????? while(ptr!=NULL)??????????? {????? printf(The value is ==%d\n,ptr-data);????? tr=ptr-next;??????????? }??????????? }
【程序
您可能关注的文档
最近下载
- 《变幻的空间》 课件 2026浙美版美术八年级下册.ppt
- 2026年中国豆制品市场深度分析与发展动向研究报告.docx
- 学位论文___土木工程(结构工程)中学学生宿舍楼.doc VIP
- 初中生数学学习困难学生的心理辅导与教育干预策略教学研究课题报告.docx
- 2026浙美版美术八年级下册第二单元第4课《黑白的魅力》课件.pptx
- 职业病诊断医师考试题库及答案.docx VIP
- 火力发电厂典型事故案例汇编.pdf VIP
- 语文学习困难学生帮扶方案.docx VIP
- 2025年四川省广安市高考物理二诊试卷(含详细答案解析).docx VIP
- 全国大学生数学建模竞赛b题全国优秀论文.docx VIP
原创力文档

文档评论(0)