#include int main( void ) { double celsius, far; // better read the value of celsius here /* You need to do something here */ far = 9.0 / 5.0 * celsius + 32; // We can output the result here. return 0; }