Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. %Sarab Mirza
  2. %Mark
  3. %ICS20-01
  4. %Turkey cooking time
  5.  
  6. %Declaring variables
  7. var pounds:int
  8. var option:int
  9. var unstuffed:int
  10. var stuffed:int
  11.  
  12. %Giving value to variables
  13. put " Options "
  14. put "Option 1: The time to cook a unstuffed turkey"
  15. put "Option 2: The time to cook a stuffed turkey"
  16. put ""
  17. put "Please enter the number corrisponding with your selected option:"..
  18. get option
  19. put ""
  20.  
  21. put "Now, Please enter the weight of the Turkey in ib:"..
  22. get pounds
  23.  
  24. unstuffed:=pounds*17
  25. stuffed:=pounds*21
  26.  
  27. put ""
  28.  
  29. %Case construct
  30. case option of
  31. label 1:
  32. put "The time to cook is ", unstuffed div 60, "hour(s) and ", unstuffed mod 60, " minute(s)"
  33.  
  34. label 2:
  35. put "The time to cook is ", stuffed div 60, "hour(s) and ", stuffed mod 60, " minute(s)"
  36.  
  37.  
  38. end case
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement