C#: Find the number and sum of all integer between 100 and 200, divisible by 9
C# Sharp For Loop: Exercise-39 with Solution
Write a C# Sharp program to find the number and sum of all integers between 100 and 200 divisible by 9.
Pictorial Presentation:

Sample Solution:
C# Sharp Code:
using System;
public class Exercise39
{
public static void Main()
{
int i, sum=0;
Console.Write("\n\n");
Console.Write("Find the number and sum of all integer between 100 and 200, divisible by 9:\n");
Console.Write("-----------------------------------------------------------------------------");
Console.Write("\n\n");
Console.Write("Numbers between 100 and 200, divisible by 9 : \n");
for(i=101;i<200;i++)
{
if(i%9==0)
{
Console.Write("{0} ",i);
sum+=i;
}
}
Console.Write("\n\nThe sum : {0} \n",sum);
}
}
Sample Output:
Find the number and sum of all integer between 100 and 200, divisible by 9: ----------------------------------------------------------------------------- Numbers between 100 and 200, divisible by 9 : 108 117 126 135 144 153 162 171 180 189 198 The sum : 1683
Flowchart:

C# Sharp Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a program in C# Sharp to check whether a number is a palindrome or not.
Next: Write a C# Sharp Program to display the pattern like pyramid using the alphabet.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises
We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook