以下的细节是个人在完成几道编程题时发现:
此次分享依然分成两部分:
- 代码展示
- 代码分析
示例一:
关于二维数组6门课,求其学号对应学生的平均成绩;
代码展示:
#include<stdio.h>
#define NOT_FIND -1
#define TOTAL_STU 8
float aver(int (*pStu)[7], int stuNo);
int main(void)
{
int student[TOTAL_STU][7];
float averScore;
int i, j, stuNumber;
printf("Input the %d student's number and score: \n", TOTAL_STU);
for (i = 0; i < TOTAL_STU; i++)
{
for (j = 0; j < 7; j++)
{
scanf("%d", &student[i][j]);
}
}
printf