2.cpp 437 B

123456789101112131415161718192021222324252627282930313233
  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4. int n;
  5. bool result;
  6. cout << "Введите n: ";
  7. cin >> n;
  8. cout << endl;
  9. cout << "Простые числа в диапазоне [2, " << n << "]:" << endl;
  10. for (int i = 3; i <= n; i++){
  11. result = true;
  12. for (int j = 2; j <= i/2; j++){
  13. if (i % j == 0){
  14. result = false;
  15. break;
  16. }
  17. }
  18. if (result == true){
  19. cout << i << endl;
  20. }
  21. }
  22. return 0;
  23. }