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


Please Help Members By Posting Answers For Below Questions

What is an adaptor class or wrapper class in c++?

785


Where can I run c++ program?

794


Will this c++ program execute or not?

782


What is the function of I/O library in C++ ?

851


Explain shallow copy?

778






what is data abstraction in C++?

819


What is c++ hash?

834


What do you mean by translation unit?

803


What is the main purpose of overloading operators?

786


Can a Structure contain a Pointer to itself?

782


What is the difference between containment and delegation?

928


What is abstraction in c++?

916


If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3

1072


How do I write a c++ program?

784


Does improper inheritance have a potential to wreck a project?

845