C程序交换给定矩阵中的对角线元素
问题
我们需要编写代码来交换主对角线元素和次对角线元素。矩阵的大小在运行时给出。
如果矩阵m和n值的大小不相等,则打印给定矩阵不是正方形。
只有方阵可以互换主对角元素,也可以和次对角元素互换。
解决方案
编写C程序来交换给定矩阵中的对角元素的解决方案如下-
交换对角线元素的逻辑解释如下-
for (i=0;i示例
以下是用于交换给定矩阵中对角元素的C程序-
#includemain (){ int i,j,m,n,a; static int ma[10][10]; printf ("Enter the order of the matrix m and n\n"); scanf ("%dx%d",&m,&n); if (m==n){ printf ("Enter the co-efficients of the matrix\n"); for (i=0;i 输出结果 执行上述程序时,会产生以下结果-
Run 1: Enter the order of the matrix m and n 3x3 Enter the co-efficient of the matrix 1 2 3 4 5 6 7 8 9 The given matrix is 1 2 3 4 5 6 7 8 9 Matrix after changing the Main & secondary diagonal 3 2 1 4 5 6 9 8 7 Run 2: Enter the order of the matrix m and n 4x3 The given order is not square matrix
热门推荐
10 孩子过生日简短祝福语
11 感谢母亲祝福语 简短精辟
12 给弟弟的祝福语简短
13 简短高大上的祝福语
14 给奶奶拜年祝福语简短
15 美好的毕业祝福语简短
16 高考夸张祝福语大全简短
17 简单生日祝福语简短大全
18 亲人喜得贵子祝福语简短