Jump to content
Fórum Script Brasil
  • 0

MULTIPLICANDO UMA MATRIZ POR 5


roccoC/C++

Question

2 answers to this question

Recommended Posts

  • 0

Colocar mais de uma função por linha não é exatamente simplificar... tá mais para bagunçar. Evite fazer isto ao máximo. Apenas encadeie na mesma linha as operações de atribuição, que podem ser encadeadas por vírgula. Isso é até melhor. Porém, funções mesmo, o ideal é um por linha. E identadinho.

Nesse tipo de algirtmo, eu compartimentalizaria...

#include <stdio.h>
#define TAM 4
#define MULTIPLICADOR 5

void leMatriz(int matriz[][TAM]){
    unsigned short int i, j;

    for(i = 0; i < TAM; i++){
        for(j = 0; j < TAM; j++){
            printf("Matriz[%d][%d]: ", i, j);
            scanf("%d", &matriz[i][j]);
        }
    }
}

void multiplicaMatriz(int matriz[TAM][TAM]){
    unsigned short int i, j;

    for(i = 0; i < TAM; i++)
        for(j = 0; j < TAM; j++)
            matriz[i][j] *= MULTIPLICADOR;
}

void escreveMatriz(int matriz[TAM][TAM]){
    unsigned short int i, j;

    for(i = 0; i < TAM; i++){
        for(j = 0; j < TAM; j++){
            printf("%3d", matriz[i][j]);
            if(j == (TAM - 1))
                printf("\n");
        }
    }
}

int main(){
    int matriz[TAM][TAM];

    leMatriz(matriz);
    system("cls");
    printf("Matriz normal: \n");
    escreveMatriz(matriz);
    multiplicaMatriz(matriz);
    printf("Matriz multiplicada por %d: \n", MULTIPLICADOR);
    escreveMatriz(matriz);

    return(0);
}

Daria pra simplificar, usar alguma aritmética de ponteiros...

Edited by mJi
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...