█████████ ████ ███░░░░░███ ░░███ ███ ░░░ ██████ ███████ ██████ ██████ ░███ ███░░███ ███░░███ ███░░███ ███░░███ ░███ ░███ ░███░███ ░███ ░███████ ░███ ░███ ░░███ ███░███ ░███░███ ░███ ░███░░░ ░███ ░███ ░░█████████ ░░██████ ░░████████░░██████ ░░██████ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░ ░░░░░░

Envío 4237

Problema 0x62 - Contar elementos mayores a X en un arreglo pequeño

  • Autor: andres0608
  • Fecha: 2021-05-30 01:00:51 UTC (Hace más de 3 años)
Caso # Resultado Tiempo Memoria
#1
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#2
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#3
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#4
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#5
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#6
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#7
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#8
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#9
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
#10
Error de compilación
                      Main.java:31: error: reached end of file while parsing
	 }
	  ^
1 error

                    
Puntos totales: 0 / 100

Código

import java.util.*;
public class Main {

 public static void main(String[] args) throws Exception {
		 
		 String  numero1, numero2,numero3,valor;
		 Scanner numeros = new Scanner(System.in);
		 numero1 = numeros.nextLine();
		 numero2="";
		 numero2 += numeros.nextLine();
		 numero3= numeros.nextLine();
		 String[] numbers = numero2.split(" ");
		 int result;
		 for(int i=0;i < Integer.parseInt(numero3);i++) {
			 valor = numeros.nextLine();
			 result= contar(numbers, Integer.parseInt(valor));
			 System.out.println(result);
		 }
		 numeros.close();  
	 }
	 
	 
	 public static int contar(String[] v, int c) {
         int contador=0;
		 for(int i=0; i < v.length; i++) {
			 if(Integer.parseInt(v[i]) > c) {
				 contador++;
			 }
		 }
		 return contador;
	 }