Advertisement
rootuss

3.27

Dec 28th, 2016
464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.87 KB | None | 0 0
  1. #include <iostream>
  2. #include <ctime>
  3. #include <cstdlib>
  4. #include <iomanip>
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.     srand(time(NULL));
  11.     double t[5][5];
  12.     for(int i=0;i<5;i++)
  13.     {
  14.        for(int j=0;j<5;j++)
  15.        {
  16.         t[i][j]=-20+(double)rand()/RAND_MAX*(108);
  17.         cout<<fixed<<setprecision(2)<<t[i][j]<<"\t";
  18.         }
  19.        cout<<endl;
  20.     }
  21.  
  22.      cout << endl;
  23.     for (int i = 0; i < 5; i++)
  24. {
  25.     double minimum = 89;
  26.     for (int j = 0; j < 5; j++)
  27.     {
  28.         if((t[i][j])<minimum)
  29.         {
  30.             minimum=t[i][j];
  31.         }
  32.     }
  33.  
  34.     int ile = 0;
  35.     for (int j = 0; j < 5; j++)
  36.         {
  37.             if (t[i][j] == minimum)
  38.             {
  39.                 ile++;
  40.             }
  41.         }
  42.     cout << fixed<<setprecision(2)<< minimum << " w " << i+1 << " wierszu wystepuje " << ile << " raz/y"<<endl;
  43. }
  44.     return 0;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement