Используя массивы и квадратный корень доработать программу с целью ускорения вычислений. С++

#include "stdafx.h"


#include


#include




using namespace std;




int main(int argc, char* argv[])


{


int n, i, j;




cin >> n;




for(i = 2; i <= n; i++)


{


for(j = 2; (i % j) != 0; j++)


{


;//Не делаем в теле ничего.


}


if(j == i) cout << i << endl;


}






system("pause");


return 0;


}
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.