lunes, 13 de mayo de 2013

CREAR Y CARGAR UNA MATRIZ DE 4 FILAS POR 4 COLUMNAS IMPRIMIR EN FORMA DIAGONAL

import java.util.Scanner;
public class ejericio20 {
    private Scanner teclado;
    private int[][] mat;
    
    public void cargar() {
        teclado=new Scanner(System.in);
        mat=new int[4][4];
        for(int f=0;f<4;f++) {
            for(int c=0;c<4;c++) {
                System.out.print("Ingrese componente:");
                mat[f][c]=teclado.nextInt();
            }
        }
    }
    
    public void imprimirDiagonalPrincipal() {
        for(int k=0;k<4;k++) {
            System.out.print(mat[k][k]+" ");
        }
    }
    
    public static void main(String[] ar) {
        ejericio20 ma=new ejericio20();
        ma.cargar();
        ma.imprimirDiagonalPrincipal();
    }  } 

 http://www.youtube.com/watch?v=gqYvZHElbhU

No hay comentarios:

Publicar un comentario