Ejercicio 020: Ingresar n valores hasta que el usuario desee y decir cuántos valores se ingresaron.
package Java_020;
import java.util.Scanner;
public class Java_020 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num, cont = 0;
char opcion = 's';
while (opcion == 's') {
System.out.println("Ingrese un numero");
num = sc.nextInt();
cont++;
System.out.print("¿Ingresar otro? s/n");
opcion = sc.next().charAt(0);
}
System.out.println("Se ingresaron: " + cont + " valores");
}
}
No hay comentarios:
Publicar un comentario