Answered step by step
Verified Expert Solution
Question
1 Approved Answer
ACTIVITY 363258.2340192.qx3zqy7 Jump to level 1 Given float temperaturelnCelsius, output Choose if warmer than 14.7 Celsius and colder than 87.2 Celsius. Otherwise, output Deny. D-D
ACTIVITY 363258.2340192.qx3zqy7 Jump to level 1 Given float temperaturelnCelsius, output "Choose" if warmer than 14.7 Celsius and colder than 87.2 Celsius. Otherwise, output "Deny". D-D - D - D- 9 11 4 int main() { 5 float temperatureInCelsius; 6 7 // Our tests will run your program with input 8.58, then run again with input 66.86, then with other value 8 // Your program should work for any input, though. cin >> temperatureInCelsius; 10 if (temperatureInCelsius > 14.7 &&
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started