skrt123

Untitled

Dec 19th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. cout<<"3. Tömb feltöltése véletlenszerű értékekkel"<<endl;
  2. cout<<"n= ";
  3. cin>>n;
  4. srand(time(NULL));
  5. for(int i=0; i<n; i++)
  6. {
  7. x[i]=rand()%100;
  8. }
  9. cout<<"A tömb adatai:"<<endl;
  10. cout<<"n="<<n<<endl;
  11. cout<<"Elemei: "<<endl;
  12. for(int i=0; i<n; i++)
  13. {
  14. cout<<setw(4)<<x[i];
  15. }
  16. cout<<endl;
  17. cin>>get;
  18. break;
Add Comment
Please, Sign In to add comment