Advertisement
Guest User

Untitled

a guest
Dec 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstring>
  3. #include "funzioni.h"
  4.  
  5. using namespace std;
  6. int main()
  7. {
  8. typedef struct numeri Lista;
  9. Lista *l = new Lista;
  10. int riemp;
  11. //int vettore[100];
  12. Lettura(l,riemp);
  13. cout<<endl;
  14. cout << " il vettore come lo hai preso : ";
  15. stampa(l,riemp);
  16. cout<<endl;
  17. bubblesort(l,riemp);
  18. cout << " il vettore ordinato : ";
  19. stampa(l,riemp);
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement