write a c++ program out put of 1 3 5 7 9

Sounds like you just have to loop through five odd numbers and output each one.

for (i=1; i+=2; i<=9) ...

Sure! Here's a simple C++ program that prints the numbers 1, 3, 5, 7, and 9:

```cpp
#include <iostream>

int main() {
// Use a for loop to iterate from 1 to 9 with a step size of 2
for (int i = 1; i <= 9; i += 2) {
std::cout << i << " "; // Print the value of i followed by a space
}

return 0;
}
```

To compile and run this program, follow these steps:

1. Create a new file with a `.cpp` extension, e.g., `output_program.cpp`.
2. Copy the above code and paste it into the `output_program.cpp` file.
3. Open a terminal or command prompt and navigate to the directory where the file is located.
4. Compile the program by running the command: `g++ -o output_program output_program.cpp` (assuming you have the GNU Compiler Collection installed).
5. After successful compilation without errors, run the program with the command: `./output_program`.
6. The program will now output the numbers 1, 3, 5, 7, 9 on the console.

That's it! You should see the desired output on your screen.