23.1.23010260. Ispisati sve 4-cifrene proste brojeve.
Opis rješenja:
Listing programa:
/* 23010260 Ispisati sve 4-cifrene proste brojeve */
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{ bool prost;
cout << "4-cifreni prosti brojevi ";
for (int x=1000; x<10000; x++)
{prost=true;
for (int i=2; i < x && prost==true;i++)
if (x%i==0) prost=false;
if (prost==true) cout << " " << x ;
}
system("PAUSE");
return EXIT_SUCCESS;
}
Ispis na ekranu:
Riješeni zadaci Index
|