如果用scanf函数赋值二维数组 终端应该怎么输入函数呢
#include <stdio.h>#include <math.h>
#include <string.h>
#define M 108
int main()
{
int a[3][3];
int i,j,s=0;
for(i=0;i<3;i++)
{for(j=0;j<3;j++)
scanf("%d",&a[3][3]);}
for(i=0;i<3;i++)
{for(j=0;j<3;j++)
{if(i==j)
s=s+a[i][j];}}
printf("%d",s);
return 0;}