menu practica 1

This commit is contained in:
Pablo
2026-03-14 15:11:19 +01:00
commit efa357f397
10 changed files with 714 additions and 0 deletions

26
Practica1/main.cpp Normal file
View 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;
};