Blurtit.
  • Ask
  • Topics
  • Discover
  • Sign in
  • Latest
Tanmoy Mistri
Tanmoy Mistri answered question 9/23/2010
Write a C++ program to shown 20 even number of while using do-while loop?
You're question is not clear.Well here's a sample program that'll print even numbers between 1 and 20. #include<iostream.h>
void main()
{
int I=1;
cout<<"Even numbers between 1 and 20n";
do{
if(I%2==0)
cout<<I<<"n"; … Read more
  • 2 Answers
  • Follow
  • Blurt
  • Favorite
  • 0
  • 0
  • 0
followed this question.
blurted this answer.
favorited this question.
Tanmoy Mistri
Follow
Tanmoy Mistri
  • 1 Answers
  • 0 Thanks
  • 0 Following
  • 0 Followers
Student of B.Tech(Information Technology).

Questions

  • Ask
  • Topics
  • Discover

Company

  • About
  • Contact
  • Support

Everything Else

  • Terms Of Use
  • Privacy Policy
  • Cookie Policy

Follow Us

Social Networks

  • Blurtit on Facebook
  • Blurtit on Twitter
  • Blurtit on Google+
Blurtit.

© Blurtit Ltd. All rights reserved.