Программа на языке с написать рекурсивную функцию, определяющую, является ли заданное натуральное число простым

Рано007 Рано007    1   22.06.2019 21:30    12

Ответы
Hiccjhcvkjxg Hiccjhcvkjxg  17.07.2020 22:22
#include "stdafx.h"#include <iostream>#include <Windows.h>
using namespace std;
bool test(int, int);void main(){ SetConsoleCP(1251); SetConsoleOutputCP(1251);
int a;
cout << "Введите натуральное число: "; cin >> a;
if (test(a, 2)) cout << "Простое" << endl; else cout << "Составное" << endl;
system("pause");}
bool test(int a, int del){ if (del < a) if (a % del == 0) return false; else test(a, del + 1);}
ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика