write a C++ programming :if the no is between 32 to 50 it
will be odd.
Answer Posted / debotri das
#include<iostream.h>
#include<conio.h>
void main()
{
int i=32;
clrscr();
while(i<=50)
{
if(i%2==0)
cout<<i<<"\n";
i++;
}
getch();
}
Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is an adaptor class or wrapper class in c++?
Where can I run c++ program?
Will this c++ program execute or not?
What is the function of I/O library in C++ ?
Explain shallow copy?
what is data abstraction in C++?
What is c++ hash?
What do you mean by translation unit?
What is the main purpose of overloading operators?
Can a Structure contain a Pointer to itself?
What is the difference between containment and delegation?
What is abstraction in c++?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
How do I write a c++ program?
Does improper inheritance have a potential to wreck a project?