How to print the series 1 3 5 9 17 33 For Loop C++ By Manavar Ahmad How to print the series 1 3 5 9 17 33 For Loop C++ By Manavar Ahmad #include<iostream> using namespace std; int main() { int i; for(i=3;i<=33;i=i*2-1) { cout<<i<<" "; } return 0; }
0 comments:
Post a Comment
If You Have Any Problem While Downloading Comment Below