Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /// Bibliotecas
- #include <stdio.h>
- #include <stdlib.h>
- #include <locale.h>
- /// Definições
- #define linha 5
- #define coluna 4
- /// Programa
- int main ( int argc, char* argv [] )
- {
- // Ajustar Idioma
- setlocale(LC_ALL,"");
- // Apresentação
- system("cls & color E");
- printf("\n ============================\n");
- system("echo - Usuario: %username%");
- system("echo - Computador: %computername%");
- system("echo - Data: %date:/=-%");
- system("echo - Hora: %time:~0,-3%");
- printf(" ============================\n");
- // Variaveis
- int i,j;
- float notas[linha][coluna] = { { 7.5, 6.8, 9.6, 6.7 },
- { 6.5, 6.3, 8.4, 7.6 },
- { 5.7, 8.6, 9.0, 4.5 },
- { 4.5, 5.8, 6.8, 7.0 },
- { 3.6, 7.6, 8.1, 6.5 }
- }; // Matriz
- printf("\n ================ \n");
- printf(" MATRIZ \n");
- printf(" ================ \n\n");
- // Estrutura de Repetição
- for( i = 0; i < linha; i ++ )
- {
- for( j = 0; j < coluna; j ++ )
- {
- printf("%10.1f", notas[i][j]);
- }
- printf("\n");
- }
- printf("\n ============================ \n");
- printf(" DIAGONAL DA MATRIZ \n");
- printf(" ============================ \n\n");
- for( i = 0; i < linha; i ++ )
- {
- for( j = 0; j < coluna; j ++ )
- {
- if ( i == j )
- {
- printf("\n- %10.2f", notas[i][j] );
- }
- }
- putchar('\n');
- }
- return (0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement