c_cpp CLASE-22-02

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp CLASE-22-02相关的知识,希望对你有一定的参考价值。

#include <iostream>
using namespace std;

void print_arr(int matriz[],int size) {
	cout << "{";
	for (int i = 0; i < size; i++) {
		cout << matriz[i];
		if (i < size - 1) cout << ", ";
	}
	cout << "}";
}

main() {
	int n_f, n_c;
	n_f = 3; n_c = 3;
	int matriz[n_f][n_c] = {
		{6, 9, 6},
		{2, 4, 4},
		{4, 5, 6},
	};
	// cout << "Ingrese el numero de filas: ";
	// cin >> n_f;
	// cout << "Ingrese el numero de columnas: ";
	// cin >> n_c;
	// int matriz[n_f][n_c];
	// system("cls");
	// cout << "Ingrese los elementos: " << endl;
	// for (int i = 0; i < n_f; i++) {
	// 	for (int j = 0; i < n_c; j++) {
	// 		cout << "Elemento[" << (i+1) << "][" << (j+1) << "] = ";
	// 		cin >> matriz[i][j];
	// 	}
	// }


	cout << "Matriz original: \n";
	// Imprimir matriz
	cout << "{\n";
	for (int i = 0; i < n_f; i++) {
		cout << "\t";
		cout << "{";
		for (int j = 0; j < n_c; j++) {
			cout << matriz[i][j];
			if (j < n_c - 1) cout << ", ";
		}
		cout << "}";
		if (i < n_c - 1) cout << ", ";
		cout << "\n";
	}
	cout << "}\n";

	cout << "Matriz Transpuesta: \n";
	cout << "{\n";
	for (int i = 0; i < n_f; i++) {
		cout << "\t";
		cout << "{";
		for (int j = 0; j < n_c; j++) {
			cout << matriz[j][i];
			if (j < n_c - 1) cout << ", ";
		}
		cout << "}";
		if (i < n_c - 1) cout << ",";
		cout << "\n";
	}
	cout << "}\n";
	system("pause");
}

以上是关于c_cpp CLASE-22-02的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 200.岛屿数量

c_cpp 127.单词阶梯

c_cpp MOFSET

c_cpp MOFSET

c_cpp 31.下一个排列

c_cpp string→char *