Advertisement
Guest User

Untitled

a guest
May 27th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. char respuesta;
  6. float a, f;
  7. a=0;
  8. f=0;
  9. {
  10. cout<<"1-¿Donde estudias?"<<endl;
  11. cout<<"a)En tu pta casa"<<endl;
  12. cout<<"b)no estudio xd"<<endl;
  13. cout<<"c)me gustan los duraznos"<<endl;
  14. cout<<"d)En la universidad de san buenapachanga"<<endl;
  15. cin>>respuesta;
  16.  
  17. if(respuesta=='d')
  18. a=a+1;
  19. else
  20. f=f+1;
  21. }
  22. {
  23. cout<<"1-¿Que estudias?"<<endl;
  24. cout<<"a)videojuegos"<<endl;
  25. cout<<"b)estudiar?"<<endl;
  26. cout<<"c)ing multimedia"<<endl;
  27. cout<<"d)ing de alimentos"<<endl;
  28. cin>>respuesta;
  29.  
  30. if(respuesta=='c')
  31. a=a+1;
  32. else
  33. f=f+1;
  34. }
  35. {
  36.  
  37. cout<<"1-¿quien es el mejor profesor?"<<endl;
  38. cout<<"a)carlos cortez :3"<<endl;
  39. cout<<"b)Rafael fong"<<endl;
  40. cout<<"c)mogollon (no me se el nombre srry)"<<endl;
  41. cout<<"d)Ninguno XD"<<endl;
  42. cin>>respuesta;
  43.  
  44. if(respuesta=='d')
  45. a=a+1;
  46. else
  47. f=f+1;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement