简单问题求大神指正错误
#include<stdio.h> 我是想求随意输入学生的个数,然后输入他们四门课的成绩,然后求出每个学生不及格的科目的个数。我运行结果不对,求指点。#define max 10000
void main()
{
int n,chengji[max][4],*p2;
int(*p1)[4],i,term,j;
printf("请输入学生个数");
scanf("%d",&n);
printf("请输入各个学生这四门课的成绩");
p2=*chengji;
for(;*p2!='\n';p2++)
{scanf("%d",p2);
}
printf("\n");
p1=chengji;
for(i=0;i<n;i++)
{ term=0;
for(j=0;j<4;j++)
{
if(*(*(p1+i)+j)<60)
term=term+1;
}
printf("第%d学生的不及格数目为%d",i+1,term);
}
}