Java program to find sum of all integers between 100 & 200 that are divisible by 7

1
2
3
4
5
6
7
8
9
10
11
12
/* Write a program to find sum of all integers greater than 100 and
   less than 200 that are divisible by 7 */
class SumOfDigit{
	public static void main(String args[]){
		int result=0;
		for(int i=100;i<=200;i++){
			if(i%7==0)
				result+=i;
		}
		System.out.println("Output of Program is : "+result);
	}
}
surajk

One thought on “Java program to find sum of all integers between 100 & 200 that are divisible by 7

  1. Hello There. I discovered your blog the use of msn. That is an extremely smartly written article. I will be sure to bookmark it and come back to read extra of your useful information. Thank you for the post. I’ll definitely return. test http://testdomain.com

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in