Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- thesad
- Date:
- 2020-04-06
- Revision:
- 26:e38cccb546f9
- Parent:
- 25:c4eed8baa6d3
- Child:
- 27:dd66bc613818
File content as of revision 26:e38cccb546f9:
#include "mbed.h"
int main()
{
int tecla;
while(1){
printf("Escoge uno: 1, 2, 3, 4, 5, 6, 7, 8, 9, 0 \n"); scanf(" %i", &tecla);
switch(tecla){
case 0:printf("Paseme profe :D \n");
break;
case 6:printf("RUSSIAN MODE ACTIVED \n");
break;
case 7:printf("Quiero pasar profe :c \n");
break;
case 8:printf("SALVE RUSSIA \n");
break;
case 1:printf("1-2 freddy viene por ti \n");
break;
case 2:printf("3-4 cierra la puerta \n");
break;
case 3:printf("5-6 coje un crucifijo \n");
break;
case 4:printf("7-8 mantente despierto \n");
break;
case 5:printf("9-10 nunca mas dormiras \n");
break;
case 9:printf("Pasenos con esa calificación :D \n");
break;
}
}
}