Advertisement
PatrickSwayze

sortowanie

Dec 6th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. cout<<"Liczby posortowane rosnaco: "<<endl;
  2. sort( t, t + n );
  3. for(int i = 0; i < n; i++)
  4. {
  5. cout << endl << "T[" << i << "] : " << t[i];
  6. }
  7. #include<algorithm>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement