Write a program in C++ to find the number and sum of all integer between 100 and 200 which are divisible by 9
- برمجة سي بلس بلس
- برمجة
- 2021-05-12
- MarwaMohammed
الأجوبة
#include <iostream>
using namespace std;
int main()
{
int i, sum = 0;
cout << "\n\n Find the number and sum of all integer between 100 and 200, divisible by 9:\n";
cout << "--------------------------------------------------------------------------------\n";
cout << " Numbers between 100 and 200, divisible by 9: " << endl;
for (i = 101; i < 200; i++)
{
if (i % 9 == 0)
{
cout << " " << i;
sum += i;
}
}
cout << "\n The sum : " << sum << endl;
}أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال
