Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab5 (353)

Snippet info

Language

Cpp

Visibility

public

Author

buteskul5.6

Created

2018-11-07T10:15:51Z

Updated

2018-11-07T10:18:50Z

#include "iostream"

using namespace std;

int main()
{
	setlocale(LC_ALL, "ru");
	int p, q;
	cout << "Введите p: "<< endl;   
	cin >> p;
	cout << "Введите q: "<< endl; 
	cin >> q;

	cout << "Результат - "<< endl;
	
	for (int i = 2; i < q; i++) 
	{
		if (!(q % i))  
			if (p % i && i % p)
				cout << endl << i;
	}
	cout << endl;	
	return 0;
}
INFO