Advertisement
lvm9

Untitled

Nov 16th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cmath>
  4. #include <cstring>
  5. #include <iomanip>
  6. using namespace std;
  7. /*FILE *archivo1; */
  8. /*void agregarDatos();*/
  9.  
  10. int main ()
  11. {
  12. int menu;
  13. int numerodevuelo;
  14.  
  15.  
  16.  
  17. cout << "Bienvenido a Operaciones Aeronauticas en Mexico\n"<<endl;
  18. cout << "Selecciona tu Aeropuerto.\n"<<endl;
  19. cout << "Guadalajara <1>" <<endl;
  20. cout << "Monterrey <2>" <<endl;
  21. cout << "Mexico <3>" <<endl;
  22. cin >> menu;
  23.  
  24.  
  25. switch(menu)
  26. {
  27. case 1:
  28. cout << "Buscar numero de vuelo pero Esta en construccion"<<endl;
  29. return main();
  30. ;break;
  31.  
  32. case 2:
  33. cout <<"Buscar numero de vuelo pero Esta en construccion 2"<<endl;
  34. ;break;
  35. case 3:
  36. cout <<"Buscar numero de vuelo pero Esta en construccion 3"<<endl;
  37. ;break;
  38.  
  39. }
  40. return 0;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement