Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- const int m=2, n=3;
- void leMatriz(float mat[m][n], int m, int n);
- void imprimeMatriz(float mat[m][n], int m, int n, int ct);
- float ret_maior(float mat[m][n], int m, int n);
- int main (){
- float mat[m][n], maior;
- leMatriz(mat, m, n);
- cout << "\nO valores da matriz são:\n";
- imprimeMatriz(mat, m, n, 1);
- maior = ret_maior(mat, m, n);
- cout << "O maior: " << maior << endl;
- cout << "\nO valores da matriz multiplicados pelo maior elemento:\n";
- imprimeMatriz(mat, m, n, maior);
- return 0;
- }
- float ret_maior(float mat[m][n], int m, int n) {
- float maior = mat[0][0];
- for(int i=0; i<m; i++) {
- for(int j=0; j<n; j++) {
- if(mat[i][j] > maior)
- maior = mat[i][j];
- }
- }
- return maior;
- }
- void leMatriz(float mat[m][n], int m, int n) {
- for(int i=0; i<m; i++) {
- for(int j=0; j<n; j++) {
- cout<<"Digite mat["<<i<<"]["<<j<<"] : ";
- cin >> mat[i][j];
- }
- }
- }
- void imprimeMatriz(float mat[m][n], int m, int n, int ct){
- for(int i=0; i<m; i++) {
- for(int j=0; j<n; j++) {
- cout << mat[i][j] * ct << " ";
- }
- cout << endl;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement