Write a declaration for a variable temperature that can hold the current outdoor temperature, measured to the half degree
LANGUAGE: C++
CHALLENGE:
Write a declaration for a variable temperature that can hold the current outdoor temperature, measured to the half degree (like 98.6 or 31.5).
SOLUTION:
float temperature;
Posted in C++, Learn To Code