【HUSTOJ】1062: 对角线I

1062: 对角线I

Time Limit: 1 Sec   Memory Limit: 128 MB

Submit: 59   Solved: 40

原题链接

Description

输入整数N,输出相应方阵。

Input

一个整数N。( 0 < n < 10 )

Output

一个方阵,每个数字的场宽为3。

Sample Input

5

Sample Output

  1  0  0  0  0
  0  1  0  0  0
  0  0  1  0  0
  0  0  0  1  0
  0  0  0  0  1

HINT

Source


#include
main()
{
	int N;
	scanf("%d",&N);
	
	for(int i=1;i<=N;i++)
	{
		
		for(int j=1;j<=N;j++)
		{
		
		if(i==j)printf("%3d",1);
		
		else printf("%3d",0);	
			
		}
		
		printf("\n");
	}
}

            这类题目可以用高中线性规划知识很容易解决

你可能感兴趣的:(From,【C】,【HUSTOJ】)