Hola a todos, ultimamente eh estado tratando de aprender java pero me ocurre un error cuando trato de usar el scanner.
Buscando en internet encontre este ejemplo:
import java.util.*;
public class SumaProductoNumeros {
public static void main(String[] ar) {
Scanner sc = new Scanner(System.in);
int nota1,nota2,nota3;
System.out.print("Ingrese primer nota:");
nota1= sc.nextInt();
System.out.print("Ingrese segunda nota:");
nota2= sc.nextInt();
System.out.print("Ingrese tercer nota:");
nota3= sc.nextInt();
int promedio=(nota1 + nota2 + nota3) / 3;
if (promedio>=7) {
System.out.print("Promocionado");
} else {
if (promedio>=4) {
System.out.print("Regular");
} else {
System.out.print("Reprobado");
}
}
}
}
Cuando pongo run en eclipse me tira un error y la funcion scanner no se realiza, que hago mal?
Buscando en internet encontre este ejemplo:
import java.util.*;
public class SumaProductoNumeros {
public static void main(String[] ar) {
Scanner sc = new Scanner(System.in);
int nota1,nota2,nota3;
System.out.print("Ingrese primer nota:");
nota1= sc.nextInt();
System.out.print("Ingrese segunda nota:");
nota2= sc.nextInt();
System.out.print("Ingrese tercer nota:");
nota3= sc.nextInt();
int promedio=(nota1 + nota2 + nota3) / 3;
if (promedio>=7) {
System.out.print("Promocionado");
} else {
if (promedio>=4) {
System.out.print("Regular");
} else {
System.out.print("Reprobado");
}
}
}
}
Cuando pongo run en eclipse me tira un error y la funcion scanner no se realiza, que hago mal?