Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ej3;
- import java.util.Scanner;
- public class EDEJ3 {
- public static void main(String[]args){
- Scanner lectura= new Scanner(System.in);
- int fila=3,column=3,suma=0,numero,Cont0=0,ContP=0,ContN=0;
- int [][] MatrizC = new int[fila][column];
- System.out.println("Programa para cargar numeros enteros en una matriz de orden 3x3(Cuadrada)");
- for (int i=0;i<fila;i++) {
- for(int j=0;j<column;j++) {
- System.out.print("Ingrese un numero a cargar en la posicion "+(i+1)+" - "+(j+1)+" :");
- MatrizC[i][j]= lectura.nextInt();
- numero= MatrizC[i][j];
- if (i!=j) {
- suma+=MatrizC[i][j];
- }
- if (10+numero==10) {
- Cont0++;
- }else{
- if(10+numero<10) {
- ContN++;
- }else{
- ContP++;
- }
- }
- }
- }
- for (int i=0;i<fila;i++) {
- for(int j=0;j<column;j++) {
- System.out.println("La posiciones cargadas en la matriz cuadrada son "+(i+1)+" - "+(j+1)+" :"+MatrizC[i][j]+".");
- }
- }
- System.out.println("La suma de los elementos que no pertenecen a la diagonal principal es: "+suma);
- System.out.println("La cantidad de ceros es:"+Cont0);
- System.out.println("La cantidad de numeros negativos es:"+ContN);
- System.out.println("La cantidad de numeros positivos es:"+ContP);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement