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