#include using namespace std; /** 2. Write a C++ program that asks when you are leaving for work and outputs an appropriate message, according to the following rules:\\ a. If leaving before 6, ``Drive.''\\ b. If leaving between 6 and 8, ``Take a train.''\\ c. If leaving after 8, ``Take a bus.''\\ **/ int main() { double leaving; cout<<"When are you leaving for work?\n"; cin>>leaving; if(leaving<6) cout<<"Drive\n"; else if (leaving <8) cout<<"Take a train\n"; else cout<<"Take a bus\n"; }