Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int suma = 0;
- int liczba;
- do
- {
- cin >> liczba;
- suma += liczba;
- } while(liczba != 0 && suma <= 20); // != oznacza nierówność
- cout << "Suma wczytanych liczb wynosi " << suma << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment