Advertisement
rootuss

2.37d

Feb 2nd, 2017
459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.73 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. void szukaj(double T[],int n)
  6. {
  7.     bool wynik;
  8.     for(int i=0;i<n;i++)
  9.     {
  10.         if(T[i]>=20)
  11.         {
  12.             wynik=false;
  13.             break;
  14.         }
  15.         else wynik=true;
  16.     }
  17.  
  18.     if(wynik==true)
  19.     {
  20.         cout<<"Nie znajduje sie liczba nie mniejsza od 20"<<endl;
  21.     }
  22.     else
  23.     {
  24.         cout<<"Znajduje sie liczba nie mniejsza od 20"<<endl;
  25.     }
  26.  
  27. }
  28.  
  29.  
  30. main()
  31. {
  32.     int n;
  33.     cout << "Podaj ile elementow ktore chcesz wprowadzic do tablicy" << endl;
  34.     cin>>n;
  35.     double T[n];
  36.  
  37.     for(int i=0;i<n;i++)
  38.     {
  39.         cout<<"Podaj "<<i+1<<" element tablicy"<<endl;
  40.         cin>>T[i];
  41.     }
  42.  
  43.     szukaj(T,n);
  44.  
  45.  
  46.     return 0;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement