Guest User

Untitled

a guest
Dec 17th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. if (temp_c >= 1200)
  2. {
  3. Colour = "White";
  4. }
  5. if (temp_c >= 1100 && temp_c < 1200)
  6. {
  7. Colour = "Light Yellow";
  8. }
  9. if (temp_c >= 1050 && temp_c < 1100)
  10. {
  11. Colour = "Yellow";
  12. }
  13. if (temp_c >= 980 && temp_c < 1050)
  14. {
  15. Colour = "Light Orange";
  16. }
  17.  
  18. if (temp_c >= 930 && temp_c < 980)
  19. {
  20. Colour = "Orange";
  21. }
  22.  
  23. if (temp_c >= 870 && temp_c < 930)
  24. {
  25. Colour = "Light Red";
  26. }
  27.  
  28. if (temp_c >= 810 && temp_c < 870)
  29. {
  30. Colour = "Light Cherry";
  31. }
  32.  
  33. if (temp_c >= 760 && temp_c < 810)
  34. {
  35. Colour = "Cherry";
  36. }
  37.  
  38. if (temp_c >= 700 && temp_c < 760)
  39. {
  40. Colour = "Dark Cherry";
  41. }
  42.  
  43. if (temp_c >= 650 && temp_c < 700)
  44. {
  45. Colour = "Blood Red";
  46. }
  47.  
  48. if (temp_c >= 600 && temp_c < 650)
  49. {
  50. Colour = "Brown Red";
  51. }
  52. if (temp_c < 600)
  53. {
  54. Colour = "--";
  55. }
Add Comment
Please, Sign In to add comment