> Create a program that will display the first 5 odd numbers.?

Create a program that will display the first 5 odd numbers.?

Posted at: 2014-12-18 
In what programming language?

#include

int main(void){

int j;

for(j=1;j<10;j+=2)

printf(%d ",j);

return 0;

}

for (i=1; i<=9; i+=2) cout << i << " ";