This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
#include <stdio.h> int main() { int eleccion; printf("elija una opcion\n opciones validas del 1 hasta el 4\n"); scanf("%i",&eleccion); switch(eleccion) { case 1: printf("1:ingresar los datos\n"); break; case 2: printf("2:borrar los datos\n"); break; case 3: printf("3:modificar los datos\n"); break; case 4: printf("4:mostrar los datos\n"); break; default: printf("la opcion no corresponde"); } return 0; }