skrt123

Untitled

Dec 19th, 2018
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. cout<<"7. Törlés adott pozícióból"<<endl;
  2. cout<<"A tömb adatai: "<<endl;
  3. cout<<"n="<<n<<endl;
  4. cout<<"A tömb elemei: ";
  5. for(int i=0; i<n; i++)
  6. {
  7. cout<<setw(4)<<x[i];
  8. }
  9. cout<<endl;
  10. cout<<"Pozíció: ";
  11. cin>>poz;
  12. for(int i=poz; i<n; i++)
  13. {
  14. x[i]=x[i+1];
  15. }
  16. n=n-1;
  17. cout<<"A tömb törlés után: "<<endl;
  18. cout<<"n="<<n<<endl;
  19. cout<<"A tömb elemei: ";
  20. for(int i=0; i<n; i++)
  21. {
  22. cout<<setw(4)<<x[i];
  23. }
  24. cout<<endl;
  25. cin>>get;
  26. break;
Add Comment
Please, Sign In to add comment