Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int i;
- int x,y=0;
- for (i = 0; i < 10; i++)
- {
- cout << "Podaj liczbe" << endl;
- cin >> x;
- y += x;
- }
- cout << "Suma 10 liczb rowna sie: " << y << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment