Mrm2299

Untitled

Sep 25th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <iostream>
  3. #include <stdlib.h>
  4.  
  5.  
  6.  
  7. using namespace std;
  8.  
  9.  
  10. int main()
  11. {
  12.     char guardar;
  13.  
  14.  
  15.  
  16.  
  17.     cout << "Holiwis ewe como te llamas? \n \n \n " << endl;
  18.     printf("-Opciones \n \n ");
  19.     printf("A---Peter la anguila \n \n");
  20.     printf ("B-----No tengo nombre lel \n \n ");
  21.     cin >> guardar;
  22.     switch(guardar)
  23.     {
  24.         case 'A':
  25.         cout << "LOL" << endl;
  26.         break;
  27.  
  28.         default:
  29.             cout << "no es cierto tu nombre es manuel ewe" << endl;
  30.  
  31.     }
  32.  
  33.  
  34.  
  35.  
  36.     system("pause");
  37.     return 0;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment