/*Q:Use Loops to print odd ids of employees from 1 to 19.*/ #include<iostream> using namespace std; int main() { int a; for(a=1;a<=19;a+=2) { cout<<"Employee Id's= "<<a<<endl; }