Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <fstream>
- #include <set>
- using namespace std;
- int inputValue(int min, int max);
- int userInputFromConsole();
- int userInputFromFile(string path);
- bool checkPath(string path);
- string userInputPath();
- int inputMethod();
- void printInConsole(set<int> a, int n);
- string userOutputPath();
- void printInFile(string path, set<int> a, int n);
- int outputMethod();
- void start();
- set<int> eratosfen(set<int> a, int n);
- set<int> fillSet(int n);
- void printTask();
- int inputValue(int min, int max) {
- int currentValue;
- bool isNotValid = true;
- do {
- cin >> currentValue;
- if (currentValue >= min && currentValue <= max)
- isNotValid = false;
- else
- std::cout << "Введите число в заданном диапазоне\n";
- } while (isNotValid);
- return currentValue;
- }
- int userInputFromConsole() {
- const int MIN_SIZE = 2;
- const int MAX_SIZE = 255;
- int n;
- cout << "Введите число, до которого нужно найти все простые числа в диапазоне " << MIN_SIZE << ".." << MAX_SIZE << ": ";
- n = inputValue(MIN_SIZE, MAX_SIZE);
- return n;
- }
- set<int> eratosfen(set<int> a, int n) {
- set<int> ::iterator it = a.begin();
- for (int i = 1; it != a.end(); i++, it++) {
- set<int> ::iterator it1 = a.begin();
- for (int j = 0; j < i; j++)
- it1++;
- for (int j = i + 1; it1 != a.end(); j++) {
- if (*it1 % *it == 0)
- it1 = a.erase(it1);
- else
- it1++;
- }
- }
- return a;
- }
- set<int> fillSet(int n) {
- set<int> a;
- for (int i = 2; i <= n; i++)
- a.insert(i);
- return a;
- }
- int userInputFromFile(string path) {
- int n;
- ifstream file(path);
- file.open(path);
- file.clear();
- file >> n;
- file.close();
- return n;
- }
- bool checkPath(string path) {
- ifstream file(path);
- if (file.is_open()) {
- cout << path << " найден" << endl;
- return true;
- }
- else {
- cout << path << " не найден" << endl;
- return false;
- }
- }
- string userInputPath() {
- string path;
- bool isNotValid = false;
- do {
- cout << "Введите абсолютный путь к файлу с входными данными" << endl;
- cin >> path;
- } while (!checkPath(path));
- return path;
- }
- int inputMethod() {
- int method;
- cout << "Каким способом хотите ввести данные?" << endl;
- cout << "1 - с помощью консоли" << endl;
- cout << "2 - с помощью файла" << endl;
- do {
- cin >> method;
- if (method != 1 && method != 2)
- cout << "Введите 1 или 2";
- } while (method != 2 && method != 1);
- return method;
- }
- void printInConsole(set<int> a, int n) {
- set<int> ::iterator it = a.begin();
- for (int i = 1; it != a.end(); i++, it++)
- cout << *it << " ";
- }
- string userOutputPath() {
- string path;
- cout << "Введите абсолютный путь к файлу для вывода результата" << endl;
- cin >> path;
- cout << "Результат работа помещён в файл";
- return path;
- }
- void printInFile(string path, set<int> a, int n) {
- ofstream file(path);
- set<int> ::iterator it = a.begin();
- for (int i = 1; it != a.end(); i++, it++)
- file << *it << " ";
- }
- int outputMethod() {
- int method;
- cout << "Куда хотите вывести результат?" << endl;
- cout << "1 - в консоль" << endl;
- cout << "2 - в файл" << endl;
- do {
- cin >> method;
- if (method != 1 && method != 2)
- cout << "Введите 1 или 2";
- } while (method != 2 && method != 1);
- return method;
- }
- void printTask() {
- cout << "Данная программа находит все простые числа, не превосходящие n, ";
- cout << "с помощью алгоритма «решето Эратосфена»" << endl;
- }
- int userInput() {
- int n;
- short method = inputMethod();
- if (method == 1)
- n = userInputFromConsole();
- else {
- string path = userInputPath();
- n = userInputFromFile(path);
- }
- return n;
- }
- void resultPrint(set<int> a, int n) {
- short method = outputMethod();
- if (method == 1)
- printInConsole(a, n);
- else {
- string path = userOutputPath();
- printInFile(path, a, n);
- }
- }
- void start() {
- int n;
- set<int> a;
- printTask();
- n = userInput();
- a = fillSet(n);
- a = eratosfen(a, n);
- resultPrint(a, n);
- }
- int main()
- {
- setlocale(LC_ALL, "Russian");
- start();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement