Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. main()
  4. {
  5. // Show the Menu
  6. puts("Menu : \n 1) Coffe \n 2) Juse \n 3) Water \n 4) Salad \n 5) Pizza \n 6) Soda \n 7) Burger \n");
  7.  
  8. // Get the selected Item :
  9. puts("Please enter your choice number : ");
  10. int choice ;
  11. scanf("%d",&choice);
  12.  
  13. // Proccess the selection :
  14. if(choice==1) puts("Coffe");
  15. if(choice==2) puts("Juse");
  16. if(choice==3) puts("Water");
  17. if(choice==4) puts("Salad");
  18. if(choice==5) puts("Pizza");
  19. if(choice==6) puts("Soda");
  20. if(choice==7) puts("Burger");
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement