December 27, 2013 Matthew Maennche C++, Learn To Code 10562, C++ LANGUAGE: C++ CHALLENGE: Write a conditional that decreases the variable shelfLife by 4 if the variable outsideTemperature is greater than 90. SOLUTION: if(outsideTemperature > 90){ shelfLife = shelfLife - 4; }