TRABAJO PROGRAMACION ARRAYS
Enviado por Johan Andres Rosas Ramos • 5 de Marzo de 2022 • Trabajo • 5.039 Palabras (21 Páginas) • 81 Visitas
TRABAJO PROGRAMACION #8
JOHAN ANDRES ROSAS RAMOS
INGENIERIA DE SISTEMAS
JAVIER DAZA
PROGRAMACION
FUNDACION UNIVERSITARIA LOS LIBERTADORES
2021
Contenido
Enunciado 1 3
Pseudocodigo 3
Código 4
Ejecución 6
Enunciado 2 8
Pseudocodigo 8
Código 9
Ejecución 11
Enunciado 3 12
Pseudocodigo 13
Código 14
Ejecución 16
Enunciado 4 17
Pseudocodigo 18
Código 19
Ejecución 21
Enunciado 5 22
Pseudocodigo 23
Código 24
Ejecución 26
Enunciado 1
Write a program in Java with NetBeans that creates a one-dimensional array with a size of 10, insert the numeric values you want in the way you want and show the average values of the matrix on the screen.
Escriba un programa en Java con NetBeans que cree una matriz unidimensional con un tamaño de 10, inserte los valores numéricos que desee en la forma que desee y mostrar los valores medios de la matriz en la pantalla.
Pseudocodigo
INICIO
READ
int filas = dato.nextInt();
int columnas = dato.nextInt();
matriz[i][j] = dato.nextInt();
END READ
DISPLAY
System.out.print(matriz[i][j] + "\t");
System.out.println();
END DISPLAY
FIN
Código
/*
Escriba un programa en Java con NetBeans que cree una matriz unidimensional
con un tamaño de 10, inserte los valores numéricos que desee en la forma
que desee y mostrar los valores medios de la matriz en la pantalla
*/
package matrizdedieznumeros;
import java.util.Scanner;
/**
* @author JOHAN ANDRES ROSAS RAMOS
*/
public class MatrizDediezNumeros {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner dato = new Scanner(System.in);
System.out.println("cuantas filas desea en la matriz 1");
int filas = dato.nextInt();
System.out.println("cuantas columnas desea en la matriz 1");
int columnas = dato.nextInt();
int matriz[][] = new int [filas][columnas];
for(int i=0;i<=filas-1;i++){
for(int j=0;j<=columnas-1;j++){
System.out.println("ingrese el valor de la matriz 1, en la posicion "+"["+i+"]"+"["+j+"]");
matriz[i][j] = dato.nextInt();
}
}
System.out.println("\n MATRIZ 1 \n");
for(int i=0;i<=filas-1;i++){
for(int j=0;j<=columnas-1;j++){
System.out.print(matriz[i][j] + "\t");
}System.out.println();
}
}
}
[pic 1]
Ejecución
run:
cuantas filas desea en la matriz 1
1
cuantas columnas desea en la matriz 1
10
ingrese el valor de la matriz 1, en la posicion [0][0]
5
ingrese el valor de la matriz 1, en la posicion [0][1]
-5
ingrese el valor de la matriz 1, en la posicion [0][2]
4
ingrese el valor de la matriz 1, en la posicion [0][3]
9
ingrese el valor de la matriz 1, en la posicion [0][4]
8
ingrese el valor de la matriz 1, en la posicion [0][5]
7
ingrese el valor de la matriz 1, en la posicion [0][6]
-2
ingrese el valor de la matriz 1, en la posicion [0][7]
3
ingrese el valor de la matriz 1, en la posicion [0][8]
-1
ingrese el valor de la matriz 1, en la posicion [0][9]
6
MATRIZ 1
5 -5 4 9 8 7 -2 3 -1 6
BUILD SUCCESSFUL (total time: 27 seconds)
[pic 2]
Enunciado 2
Write a program in Java with NetBeans that creates a one-dimensional array where you indicate the size by keyboard and create a function that fills the array with the multiples of a number requested by keyboard. For example, if I define an array of size 5 and select a 3 in the function, the array will contain 3, 6, 9, 12, 15. Display them on the screen using a different function.
...