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