Write a program in C++ to find the number and sum of all integer between 100 and 200 which are divisible by 9
.#include <iostream>
using namespace std;
void main()
{
int i, sum=0;
cout<<"Numbers between 100 and 200, divisible by 9 : \n";
for(i=101;i<200;i++)
{
if(i%9==0)
{
cout<<" "<<i;
sum+=i;
}
}
cout<<"\n\nThe sum : \n"<<sum;
system ("pause");
}
using namespace std;
void main()
{
int i, sum=0;
cout<<"Numbers between 100 and 200, divisible by 9 : \n";
for(i=101;i<200;i++)
{
if(i%9==0)
{
cout<<" "<<i;
sum+=i;
}
}
cout<<"\n\nThe sum : \n"<<sum;
system ("pause");
}
Expected Output :
Numbers between 100 and 200, divisible by 9 :
108 117 126 135 144 153 162 171 180 189 198
The sum : 1683
Write a program in C++ to find the number and sum of all integer between 100 and 200 which are divisible by 9
Reviewed by Unknown
on
May 30, 2017
Rating:
No comments: