Before:

if( temperature >= 68 )
{
    cout << "Ideal weather for outdoor activities" << endl;
}
else
{
    if( temperature < 68 )
    {
        cout << "Too cold for outdoor activities" << endl;
    }
}