编程输入任意4行4列矩阵,求出其中的最小值,及其所在行列,并输出矩阵的转置矩阵

日期:2017-04-18 14:11:54 人气:1

编程输入任意4行4列矩阵,求出其中的最小值,及其所在行列,并输出矩阵的转置矩阵

#include "stdafx.h" #include #include using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int arr[4][4],i,j; int temp[4][4]; for (i=0;i<=3;i++) { printf("请输入第%d行数据:",(i+1)); for (j=0;j<=3;j++)
    A+
热门评论