C语言流程图3页
C语言流程图下面程序的流程图怎么画?我在下面画了一个样图。若是有什么不足之处,请谅解。#include<stdio.h>#include<stdlib.h>#define N1024typedef struct node{int sno;/*这里分别是学号(便于最后列表时统计),四门课的分数,总分,平均分*/int course1;intcourse2;int course3;int course4;int aver;}student;void main(){int i,j, number;int total1,total2,total3,total4;total1=total2=total3=total4=0;/*total指的是四门课程的平均分*/student st[N], temp;printf("Please input the student's number:");/*确定学生人数*/scanf("%d",&number);if(number>1024){printf("The number is too large!\n");exit(0);Yfor(i=0;i<number;i++)/*进行成绩输入*/光合作用printf("Please input the%dth student's sno:",i+1);scanf("%d",&st[i]. sno);printf("Please input the%d's student's course 1:", st[i]. sno);scanf("%d",&st[i]. course 1);printf("Please input the%d's student'scourse2:", st[i]. sno);scanf("%d",&st[i]. course 2);printf("Please input the%d's student'scourse3:", st[i]. sno);scanf("%d",&st[i]. course 3);printf("Please input the%d's student'scourse4:", st[i]. sno);scanf("%d",&st[i]. course 4);st[i]. aver=(st[i].course1+st[i].course2+st[i].cours