Declare a variable temperature and initialize it to 98.6.

LANGUAGE: C++

CHALLENGE:

Declare a variable temperature and initialize it to 98.6.

SOLUTION:



float temperature;
temperature = 98.6;