二维字符数组的输入与输出
/* Note:Your choice is C IDE */#include "stdio.h"
void main()
{
int i,j;
char t[2][2];
for(i=0;i<2;i++)
for(j=0;j<2;j++)
scanf("%c ",&t[i][j]);
for(i=0;i<2;i++)
{for(j=0;j<2;j++)
printf("%c ",t[i][j]);
printf("\n");}
}
我的输入方式: a b
c d
但仍需再输入一个字符才能输出
例如输入:
a b
c d
d
输出:a b
c d
请教:如何不需要多输入一个字符d,就能输出 答案?