Advertisement
Guest User

Untitled

a guest
Oct 16th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1.  
  2. package a;
  3. import java.util.Scanner;
  4. public class p6 {
  5.  
  6. public static void main(String[] args){
  7. Scanner sc = new Scanner(System.in);
  8. int cyfra;
  9. int suma = 0;
  10. int spin=0;
  11. while (suma < 100) {
  12.  
  13. System.out.println("Podaj cyfrÄ™: ");
  14. cyfra = sc.nextInt();
  15. suma += cyfra;
  16.  
  17. spin++;
  18. }
  19.  
  20. double arithmetic_average = suma/spin;
  21. System.out.printf(" arithmetic average: ", arithmetic_average );
  22.  
  23.  
  24.  
  25.  
  26. }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement