<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>sum of integers | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/sum-of-integers/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Fri, 04 Feb 2011 12:30:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Java program to find sum of all integers between 100 &#038; 200 that are divisible by 7</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-find-sum-integers-100-200-divisible-7/</link>
					<comments>https://studentprojects.in/software-development/java/java-programs/basic/java-program-find-sum-integers-100-200-divisible-7/#comments</comments>
		
		<dc:creator><![CDATA[surajk]]></dc:creator>
		<pubDate>Fri, 04 Feb 2011 12:30:23 +0000</pubDate>
				<category><![CDATA[Basic Programs]]></category>
		<category><![CDATA[Source Codes]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[lab programs]]></category>
		<category><![CDATA[sum of integers]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1324</guid>

					<description><![CDATA[<p>/* 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</p>
<p>The post <a href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-find-sum-integers-100-200-divisible-7/">Java program to find sum of all integers between 100 & 200 that are divisible by 7</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<pre lang="java" line="1">
/* 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);
	}
}
</pre><p>The post <a href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-find-sum-integers-100-200-divisible-7/">Java program to find sum of all integers between 100 & 200 that are divisible by 7</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/java/java-programs/basic/java-program-find-sum-integers-100-200-divisible-7/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
