Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5.  
  6. int main()
  7. {
  8. cout<<"Ce varsta ai?"<<endl;
  9.  
  10. int varsta,copii,fete;
  11.  
  12. cin>>varsta;
  13.  
  14. if(varsta>=18)
  15. {
  16.  
  17. cout<<"Bravo esti major"<<endl;
  18. cout<<"Cati copii ai?";
  19. cin>>copii;
  20. if(copii>0){
  21.  
  22. cout<<"Sa-ti traiasca"<<endl;
  23. cout<<"Cate fete ai?";
  24. cin>>fete;
  25. if(fete>0)
  26. {
  27. cout<<"Bravo!";
  28.  
  29. }else{
  30. cout<<"Ai baietii!";
  31. }
  32.  
  33.  
  34.  
  35.  
  36.  
  37. }else{
  38. cout<<"Mai ai timp...";
  39.  
  40. }
  41.  
  42.  
  43. }else{
  44.  
  45. cout<<"Esti minor";
  46. }
  47.  
  48.  
  49.  
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement