Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- /**
- *
- * @author urksiful
- */
- public class Main{
- public static void main(String[] args) {
- Scanner x = new Scanner(System.in);
- int n = 1, puntos = 0, equipos = 0;
- /*EUP Que reciba las canastas que han hecho en un
- torneo de basketbol, el programa recibira el numero
- de canastas por equipo hasta que se ingrese un 0, y
- debera de mostrar el promedio de canastas y el numero
- de equipos que jugaron*/
- n = x.nextInt();
- while (n != 0) {
- puntos += n;
- equipos++;
- n = x.nextInt();
- }
- System.out.println("Promedio: " + (puntos / equipos));
- System.out.println("Equipos: " + equipos);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement