Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<iostream>
- using namespace std;
- void div_all(int N)
- {
- int n = N;
- for (int i = 1; i < n; i++)
- {
- if (n % i == 0)
- {
- cout << i << " ";
- }
- }
- }
- int main()
- {
- setlocale(LC_ALL, "Rus");
- int N;
- cout << "Введите число N. Выведите все его делители " << endl ;
- cin >> N;
- div_all(N);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment