Advertisement
Cieslin

PPIteracjeOceniane

Nov 21st, 2017
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.56 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <conio.h>
  3.  
  4.  
  5. int main()
  6. {
  7.     int liczba, suma = 0, podanaliczba;
  8.     while (true)
  9.     {
  10.         do
  11.         {
  12.             printf("Wprowadzanie 0 zakonczy dzialanie programu\n");
  13.             printf("Ktora cyfre chcez policzyc: ");
  14.             scanf("%d", &liczba);
  15.             if (liczba == 0)
  16.             {
  17.                 _getch();
  18.                 return 0;
  19.             }
  20.         } while (liczba < 1 || liczba >= 10);
  21.         do
  22.         {
  23.             printf("Wpradza liczby: \n");
  24.             scanf("%d", &podanaliczba);
  25.             suma += podanaliczba;
  26.         } while (podanaliczba != 0);
  27.         printf("Suma wynosi: %d\n", suma);
  28.     }
  29.     _getch();
  30.     return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement