<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Program to find the perfect numbers between a given range	</title>
	<atom:link href="https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-perfect-numbers-between-a-given-range/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-perfect-numbers-between-a-given-range/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Tue, 20 Aug 2013 14:49:02 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: Meena.S		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-perfect-numbers-between-a-given-range/comment-page-1/#comment-10032</link>

		<dc:creator><![CDATA[Meena.S]]></dc:creator>
		<pubDate>Tue, 20 Aug 2013 14:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=319#comment-10032</guid>

					<description><![CDATA[it was really helpfull]]></description>
			<content:encoded><![CDATA[<p>it was really helpfull</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: srinivas		</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c/number/program-to-find-the-perfect-numbers-between-a-given-range/comment-page-1/#comment-9584</link>

		<dc:creator><![CDATA[srinivas]]></dc:creator>
		<pubDate>Sat, 09 Mar 2013 05:19:50 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=319#comment-9584</guid>

					<description><![CDATA[import java.util.*;
public class Perfect
{
  public static void main(String args[])
  {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int num[] = new int[n];
    int x=0,i=0;
    String line = sc.next();
    String numbers[] = new String[n+(n-1)];
    numbers = line.split(&quot;,&quot;);
    int sum;
    for(String y:numbers)
    {
      x = Integer.parseInt(y);
      sum=0;
      for(int j=1;j&#060;=x;j++)
      {
        if(x%j==0)
        sum=sum+j;
      }
      if(sum/2==x &#038;&#038; x!=0)
      System.out.print(x);
    }
  }
}]]></description>
			<content:encoded><![CDATA[<p>import java.util.*;<br />
public class Perfect<br />
{<br />
  public static void main(String args[])<br />
  {<br />
    Scanner sc = new Scanner(System.in);<br />
    int n = sc.nextInt();<br />
    int num[] = new int[n];<br />
    int x=0,i=0;<br />
    String line = sc.next();<br />
    String numbers[] = new String[n+(n-1)];<br />
    numbers = line.split(&#8220;,&#8221;);<br />
    int sum;<br />
    for(String y:numbers)<br />
    {<br />
      x = Integer.parseInt(y);<br />
      sum=0;<br />
      for(int j=1;j&lt;=x;j++)<br />
      {<br />
        if(x%j==0)<br />
        sum=sum+j;<br />
      }<br />
      if(sum/2==x &amp;&amp; x!=0)<br />
      System.out.print(x);<br />
    }<br />
  }<br />
}</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
