dzieciol

aproksymacja

Nov 4th, 2016
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.68 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8.     int Lelementow;
  9.     cout<< "podaj liczbe elementow";
  10.     cin>>Lelementow;
  11.     float x[Lelementow];
  12.     float y[Lelementow];
  13.     bool powt=0;
  14.     cout<< "podaj x:"<<endl;
  15.     for(int i = 0 ; i< Lelementow; i++ )
  16.     {
  17.           cout<<"x["<<i<<"] ";
  18.           cin>>x[i];
  19.     }
  20.     for (int i=0;i<Lelementow;i++)
  21.     {
  22.           for(int j=i+1;j<Lelementow;j++)
  23.           {
  24.               if(x[i]==x[j]){
  25.                 powt=1;
  26.                 break;
  27.  
  28.               }
  29.  
  30.  
  31.           }
  32.           if(powt) break;
  33.     }
  34.    
  35.     if(powt) {cout<<"x sie powtarzaja";return -1};
  36.    
  37.    
  38.  
  39.     return 0;
  40. }
Add Comment
Please, Sign In to add comment