menu practica 1
This commit is contained in:
BIN
Practica1/dgt.o
Executable file
BIN
Practica1/dgt.o
Executable file
Binary file not shown.
26
Practica1/main.cpp
Normal file
26
Practica1/main.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <conio>
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
char opcion;
|
||||
while (opcion!=8)
|
||||
{
|
||||
cout<<opcion<<enl<<endl;
|
||||
cout<<"SANCIONES APP. MENU PRINCIPAL"<<endl;
|
||||
cout<<"===================================="<<endl;
|
||||
cout<<" 1. Consultar cehiculo."<<endl;
|
||||
cout<<" 2. Añadir vehiculo."<<endl;
|
||||
cout<<" 3. Mostrar radares."<<endl;
|
||||
cout<<" 4. Mostrar radar."<<endl;
|
||||
cout<<" 5. Procsar radar."<<endl;
|
||||
cout<<" 6. Mostrar fichero de sanciones."<<endl;
|
||||
cout<<" 7. Mostrar cuantia de sancion."<<endl;
|
||||
cout<<" 8. Salir."<<endl;
|
||||
opcion=getch();
|
||||
};
|
||||
system("clear");
|
||||
return 0;
|
||||
};
|
||||
Reference in New Issue
Block a user