23.1.23010330. Generisati 10 slučajnih 2-cifrenih brojeva i ispisati najveći paran od njih ako ga ima.

Opis rješenja:

Listing programa:

/* 23010330 Generisati 10 slučajnih 2-cifrenih brojeva i ispisati najveći paran od njih ako ga ima*/
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{   int sluc, max=INT_MIN;
    srand(time(NULL));
    rand();
    for (int i=0; i<10;i++) 
        {sluc=rand()%90+10;
         cout << sluc << "  "; 
        if (sluc>max && sluc%2==0) max=sluc;
        }
    if (max>9) cout << endl << "Najveci paran je " << max << endl;
       else cout << endl << "Nema parnog broja " << endl;
    system("PAUSE");
    return EXIT_SUCCESS;
}

Ispis na ekranu:

Riješeni zadaci    Index