<?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 Display Multiplication Table	</title>
	<atom:link href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-multiplication-table/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-multiplication-table/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Tue, 10 Feb 2015 17:24:59 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: sonal		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-multiplication-table/comment-page-1/#comment-80842</link>

		<dc:creator><![CDATA[sonal]]></dc:creator>
		<pubDate>Tue, 10 Feb 2015 17:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1328#comment-80842</guid>

					<description><![CDATA[sir can u tell me the ex for print multipl table in a programming example]]></description>
			<content:encoded><![CDATA[<p>sir can u tell me the ex for print multipl table in a programming example</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jaswinder-Singh		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-multiplication-table/comment-page-1/#comment-55423</link>

		<dc:creator><![CDATA[Jaswinder-Singh]]></dc:creator>
		<pubDate>Wed, 03 Dec 2014 16:45:27 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1328#comment-55423</guid>

					<description><![CDATA[import java.io.*;
class jh
{
public static void main(String args[])throws IOException
{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
int a,b,c=1;
System.out.println(&quot;Enter The No=&quot;);
a=Integer.parseInt(br.readLine());
for(c=1;c&#060;=10;c++)
{
b=a*c;
System.out.println(b);
}
}
}]]></description>
			<content:encoded><![CDATA[<p>import java.io.*;<br />
class jh<br />
{<br />
public static void main(String args[])throws IOException<br />
{<br />
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));<br />
int a,b,c=1;<br />
System.out.println(&#8220;Enter The No=&#8221;);<br />
a=Integer.parseInt(br.readLine());<br />
for(c=1;c&lt;=10;c++)<br />
{<br />
b=a*c;<br />
System.out.println(b);<br />
}<br />
}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: shalu sharma		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-multiplication-table/comment-page-1/#comment-35575</link>

		<dc:creator><![CDATA[shalu sharma]]></dc:creator>
		<pubDate>Sat, 11 Oct 2014 13:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1328#comment-35575</guid>

					<description><![CDATA[i like]]></description>
			<content:encoded><![CDATA[<p>i like</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: shalu sharma		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-multiplication-table/comment-page-1/#comment-35573</link>

		<dc:creator><![CDATA[shalu sharma]]></dc:creator>
		<pubDate>Sat, 11 Oct 2014 13:54:04 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1328#comment-35573</guid>

					<description><![CDATA[i like it]]></description>
			<content:encoded><![CDATA[<p>i like it</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Lakshminarayanan		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-multiplication-table/comment-page-1/#comment-10506</link>

		<dc:creator><![CDATA[Lakshminarayanan]]></dc:creator>
		<pubDate>Wed, 09 Apr 2014 02:52:43 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1328#comment-10506</guid>

					<description><![CDATA[Here the correct code......


import java.util.Scanner;

public class multip{

   public static void main(String arg[])
   {
       int i,k;
	   Scanner in=new Scanner(System.in);
       System.out.println(&quot;Enter the multiplication table number &quot;); 
	   i=in.nextInt();
       for(int j=1; j&#060;=10; j++)
       {
           k=i*j;
           System.out.println(i+&#034; * &#034;+j+&#034; = &#034;+k);
       }
   }
}]]></description>
			<content:encoded><![CDATA[<p>Here the correct code&#8230;&#8230;</p>
<p>import java.util.Scanner;</p>
<p>public class multip{</p>
<p>   public static void main(String arg[])<br />
   {<br />
       int i,k;<br />
	   Scanner in=new Scanner(System.in);<br />
       System.out.println(&#8220;Enter the multiplication table number &#8220;);<br />
	   i=in.nextInt();<br />
       for(int j=1; j&lt;=10; j++)<br />
       {<br />
           k=i*j;<br />
           System.out.println(i+&quot; * &quot;+j+&quot; = &quot;+k);<br />
       }<br />
   }<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ukiro		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-multiplication-table/comment-page-1/#comment-9937</link>

		<dc:creator><![CDATA[ukiro]]></dc:creator>
		<pubDate>Fri, 26 Jul 2013 06:58:41 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1328#comment-9937</guid>

					<description><![CDATA[thanks]]></description>
			<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
