Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.61 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     //Dekalruje zmienne
  8.     int n;
  9.     int a = 0;
  10.     int b;
  11.     int suma = 0;
  12.  
  13.     //Pobiera n
  14.     cout << "Podaj liczbę calkowita: " << endl;
  15.     cin >> n;
  16.  
  17.     while(n>a)
  18.     {
  19.         //Pobiera b, a następnie dodaje do sumy
  20.         cout << "Podaj liczbe druga calkowita" << endl;
  21.         cin >> b;
  22.         suma += b;
  23.         //Sprawdza czy b jest ujemne, jeśli tak dodaj do a
  24.         if(b<0)
  25.         {
  26.             a++;
  27.         }
  28.     }
  29.  
  30.     //Wywala na ekran sume dodawania
  31.     cout << "Suma wynosi:" << " " << suma << endl;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement