#include int main(){ int index; for(index=0;index<5;index++) { switch(index) { case 0: case 1: case 2:cout<<"Index is less than 3"<<"\n"; break; case 3:cout<<"Index is 3"<<"\n"; break; default:cout<<"Index is greater than 3"<<"\n"; break; } } return 0; }