Write a C++ program to print odd numbers from 1 to 10.
Answers
Answered by
0
Answer:
gud night
thanks for free points..............
Answered by
1
Explanation:
- How to print ODD numbers from 1 to 10 C++ Program
- using namespace std;
- int main( )
- int i;
- for (i=1; i<=10; i+=2)
- cout<<i<<" ";
- return 0;
Similar questions