Advertisement
adventuretimeh

Ripetizioni while 2

Feb 4th, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.41 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. //Compiler version gcc  6.3.0
  4.  
  5. int main()
  6. {
  7.   int numero,somma,conta;
  8.   float media;
  9.  somma=0;
  10.  conta=0;
  11.  media=0;
  12.  printf("dammi un numero");
  13.  scanf("%d",&numero);
  14.  while(numero!=0)
  15.  {
  16.    somma=somma+numero;
  17.    conta=conta+1,
  18.    printf("dammi un numero");
  19.    scanf("%d",&numero);
  20.  }
  21.  media=somma/conta;
  22.  printf("media %f",media);
  23.  printf("somma %d",somma);
  24.   return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement