Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ej4;
- import java.util.ArrayList; //Arreglo dinamico.
- import java.util.Scanner;
- public class EJ4 {
- public static void main(String[] args) {
- String resp;
- int num,sumador=0,sumador1=0,producto=1,contM=0;
- Scanner lectura= new Scanner(System.in);
- ArrayList<Integer> Numeros= new ArrayList<Integer>();
- do {
- System.out.print("Ingrese un numero: ");
- num=lectura.nextInt();
- Numeros.add(num);
- sumador+=num;
- System.out.print("Desea ingresar mas numeros?(S/N):");
- resp= lectura.next();
- }while (resp.contentEquals("S")||resp.contentEquals("s"));
- double promedio=(sumador/Numeros.size());
- for (int i =0;i<Numeros.size();i++) {
- if (Numeros.get(i)>promedio) {
- contM++;
- }
- if (Numeros.get(i) %2==0) {
- sumador1+=Numeros.get(i);
- }
- else {
- producto*= Numeros.get(i);
- }
- }
- System.out.println("La suma de todos los numeros pares es: "+sumador1);
- System.out.println("El producto de todos los numeros impares es : "+producto);
- System.out.println("El promedio es: "+promedio);
- System.out.println("La cantidad de numeros mayores al promedio son: "+contM);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement