<?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: Java program to Reverse the given number	</title>
	<atom:link href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-reverse-number/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-reverse-number/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 14 Nov 2015 17:26:07 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: Jayashankar		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-reverse-number/comment-page-1/#comment-10492</link>

		<dc:creator><![CDATA[Jayashankar]]></dc:creator>
		<pubDate>Tue, 25 Mar 2014 06:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1320#comment-10492</guid>

					<description><![CDATA[I want to reverse a number 1000 to 0001 can any one help me to find the solution.]]></description>
			<content:encoded><![CDATA[<p>I want to reverse a number 1000 to 0001 can any one help me to find the solution.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: prashanth		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-reverse-number/comment-page-1/#comment-10441</link>

		<dc:creator><![CDATA[prashanth]]></dc:creator>
		<pubDate>Sat, 15 Feb 2014 06:56:09 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1320#comment-10441</guid>

					<description><![CDATA[class Sha{
public static void main(String[] args){
int n=1234,reverse=0;
System.out.println(&quot;Enter your number to reverse&quot;);
while(n&#060;1){
reverse = reverse*10;
reverse = reverse+n%10;
n = n/10;
}
System.out.println(&#034;Reverse number is =&#034; +n);
}
}
 getting output as same :(]]></description>
			<content:encoded><![CDATA[<p>class Sha{<br />
public static void main(String[] args){<br />
int n=1234,reverse=0;<br />
System.out.println(&#8220;Enter your number to reverse&#8221;);<br />
while(n&lt;1){<br />
reverse = reverse*10;<br />
reverse = reverse+n%10;<br />
n = n/10;<br />
}<br />
System.out.println(&quot;Reverse number is =&quot; +n);<br />
}<br />
}<br />
 getting output as same 🙁</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: boston		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-reverse-number/comment-page-1/#comment-10232</link>

		<dc:creator><![CDATA[boston]]></dc:creator>
		<pubDate>Wed, 16 Oct 2013 08:57:11 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1320#comment-10232</guid>

					<description><![CDATA[use &quot;try catch&quot; block]]></description>
			<content:encoded><![CDATA[<p>use &#8220;try catch&#8221; block</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: siddesh		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-reverse-number/comment-page-1/#comment-10031</link>

		<dc:creator><![CDATA[siddesh]]></dc:creator>
		<pubDate>Tue, 20 Aug 2013 11:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1320#comment-10031</guid>

					<description><![CDATA[shreya i think u wouldnt have passed the command line argument line.]]></description>
			<content:encoded><![CDATA[<p>shreya i think u wouldnt have passed the command line argument line.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Avas Ansuman		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-reverse-number/comment-page-1/#comment-10018</link>

		<dc:creator><![CDATA[Avas Ansuman]]></dc:creator>
		<pubDate>Fri, 16 Aug 2013 09:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1320#comment-10018</guid>

					<description><![CDATA[class reverse 
{
public void main(int a)
{
int b=a/1000
int c=a%1000  
int d=c/100
int e=c%100
int f=e/10
int g=e%10
int a1=1000*g+100*f+10*d+b
System.out.println(a1);
}
} 

i think the integer a1 will have many memory allocation units in contrast to integer a which i think has only one units.IWOULD BE GRATEFUL TO YOU IF U READ THIS AND REPLY WHAT IS MY MISTAKE.
                                                                                              REGARDS]]></description>
			<content:encoded><![CDATA[<p>class reverse<br />
{<br />
public void main(int a)<br />
{<br />
int b=a/1000<br />
int c=a%1000<br />
int d=c/100<br />
int e=c%100<br />
int f=e/10<br />
int g=e%10<br />
int a1=1000*g+100*f+10*d+b<br />
System.out.println(a1);<br />
}<br />
} </p>
<p>i think the integer a1 will have many memory allocation units in contrast to integer a which i think has only one units.IWOULD BE GRATEFUL TO YOU IF U READ THIS AND REPLY WHAT IS MY MISTAKE.<br />
                                                                                              REGARDS</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: raj		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-reverse-number/comment-page-1/#comment-8854</link>

		<dc:creator><![CDATA[raj]]></dc:creator>
		<pubDate>Fri, 07 Sep 2012 06:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1320#comment-8854</guid>

					<description><![CDATA[sorry to say your source code is not usefull because the adds cover your code its not able to see your code.]]></description>
			<content:encoded><![CDATA[<p>sorry to say your source code is not usefull because the adds cover your code its not able to see your code.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
