Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Inversão de Matriz em C


Douglas Soares

Question

Olá!

Faculdade, Trabalhos, Problemas! rs, vamos lá.

Vejam o código.

#include <stdio.h>
#include <stdlib.h>

#define tam 3

int main()
{
  float matriz1[tam][tam]; //Matriz valorada pelo Usuario
  int i,j;
  
  printf("Insira os elementos da Matriz 1.\n ");
  for (i=0;i<4;i++){
      for (j=0;j<4;j++){
      printf("Matriz1[%d][%d] = ",i,j);
      scanf("%f",&matriz1[i][j]);
      }
  }
  
  printf("\nMatriz 1\n\n");
  for (i=0;i<4;i++){
      for (j=0;j<4;j++){
      printf("%f ",matriz1[i][j]);
      }
      printf("\n");
  }  
   
  getch();
}

Devo criar outra Matriz de mesmo tamanho e colocar os valores da Matriz1 Invertidos, alguém pode me ajudar?

Obrigado!

Edited by Douglas Soares
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Acho que consegui!

#include <stdio.h>
#include <stdlib.h>

#define tam 4

int main()
{
  float matriz1[tam][tam]; //Matriz valorada pelo Usuario
  float matriz2[tam][tam];
  int i,j;
  
  printf("Insira os elementos da Matriz 1.\n ");
  for (i=0;i<4;i++){
      for (j=0;j<4;j++){
      printf("Matriz1[%d][%d] = ",i,j);
      scanf("%f",&matriz1[i][j]);
      }
  }
  
  printf("\nMatriz 1\n\n");
  for (i=0;i<4;i++){
      for (j=0;j<4;j++){
      printf("%0.2f ",matriz1[i][j]);
      }
      printf("\n");
  }  
  
  for (i=0;i<4;i++){
      for (j=0;j<4;j++){
      matriz2[j][i] = matriz1[i][j];
      }
  }
  
  printf("\nMatriz INVERTIDA\n\n");
  for (i=0;i<4;i++){
      for (j=0;j<4;j++){
      printf("%0.2f ",matriz2[i][j]);
      }
      printf("\n");
  }  
   
  getch();
}

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
      652.1k
×
×
  • Create New...