lunes, 13 de mayo de 2013

HACER UNA MATRIZ DE 3 FILAS X 5 COLUMNAS DE TIPO INT, CARGAR SUS COMPONENTES Y LUEGO IMPRIMIRLAS COMO MENSAJE

import java.util.Scanner;
public class ejercicio19{
    private Scanner teclado;
    private int[][] mat;
    
    public void cargar() {
        teclado=new Scanner(System.in);
        mat=new int[3][5];
        for(int f=0;f<3;f++) {
            for(int c=0;c<5;c++) {
                System.out.print("Ingrese componente:");
                mat[f][c]=teclado.nextInt();
            }
        }
    }
    
    public void imprimir() {
        for(int f=0;f<3;f++) {
            for(int c=0;c<5;c++) {
                System.out.print(mat[f][c]+" ");
            }
            System.out.println();
        }
    }public static void main(String[] ar) {
        ejercicio19 ma=new ejercicio19();
        ma.cargar();
        ma.imprimir();
    }   
}
 http://www.youtube.com/watch?v=gqYvZHElbhU

No hay comentarios:

Publicar un comentario