<?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 triangle 0 10 101 0101	</title>
	<atom:link href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Wed, 07 Oct 2015 10:46:36 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>
		By: kirit chavda		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/comment-page-1/#comment-135478</link>

		<dc:creator><![CDATA[kirit chavda]]></dc:creator>
		<pubDate>Wed, 07 Oct 2015 10:46:36 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1354#comment-135478</guid>

					<description><![CDATA[1
2 6
3 7 10
4 8 11 13
5 9 12 14 15

i want this pyramid program]]></description>
			<content:encoded><![CDATA[<p>1<br />
2 6<br />
3 7 10<br />
4 8 11 13<br />
5 9 12 14 15</p>
<p>i want this pyramid program</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: babloo kumar		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/comment-page-1/#comment-102106</link>

		<dc:creator><![CDATA[babloo kumar]]></dc:creator>
		<pubDate>Sat, 09 May 2015 10:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1354#comment-102106</guid>

					<description><![CDATA[please sol this output
                    0
                1 0 1 
            2 1 0 1 2 
        3 2 1 0 1 2 3 
    4 3 2 1 0 1 2 3 4 
5 4 3 2 1 0 1 2 3 4 5]]></description>
			<content:encoded><![CDATA[<p>please sol this output<br />
                    0<br />
                1 0 1<br />
            2 1 0 1 2<br />
        3 2 1 0 1 2 3<br />
    4 3 2 1 0 1 2 3 4<br />
5 4 3 2 1 0 1 2 3 4 5</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: heena		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/comment-page-1/#comment-52548</link>

		<dc:creator><![CDATA[heena]]></dc:creator>
		<pubDate>Tue, 25 Nov 2014 18:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1354#comment-52548</guid>

					<description><![CDATA[I found more real interview program on this blog http://javatutorialhere.blogspot.in/]]></description>
			<content:encoded><![CDATA[<p>I found more real interview program on this blog <a href="http://javatutorialhere.blogspot.in/" rel="nofollow ugc">http://javatutorialhere.blogspot.in/</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: priyanka		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/comment-page-1/#comment-24667</link>

		<dc:creator><![CDATA[priyanka]]></dc:creator>
		<pubDate>Thu, 04 Sep 2014 10:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1354#comment-24667</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/comment-page-1/#comment-10526&quot;&gt;bharat&lt;/a&gt;.

i want this pattern pls help me na

1
11
101
10 0 1]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/comment-page-1/#comment-10526">bharat</a>.</p>
<p>i want this pattern pls help me na</p>
<p>1<br />
11<br />
101<br />
10 0 1</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: bharat		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/comment-page-1/#comment-10526</link>

		<dc:creator><![CDATA[bharat]]></dc:creator>
		<pubDate>Sat, 19 Apr 2014 08:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1354#comment-10526</guid>

					<description><![CDATA[/*      The correct way to get exact output
0 
1 0
1 0 1
0 1 0 1   */

public class triangle_0_10_101_0101 {
	public static void main(String[] args) {
		int n=12,a=0;
		for(int i=1;i&#060;=n;i++){
			for(int j=0;j&#060;i;j++){
				a=n%2;
				System.out.print(a +&#034; &#034;);
				n--;
			}	
			System.out.println();
		}
	}
}]]></description>
			<content:encoded><![CDATA[<p>/*      The correct way to get exact output<br />
0<br />
1 0<br />
1 0 1<br />
0 1 0 1   */</p>
<p>public class triangle_0_10_101_0101 {<br />
	public static void main(String[] args) {<br />
		int n=12,a=0;<br />
		for(int i=1;i&lt;=n;i++){<br />
			for(int j=0;j&lt;i;j++){<br />
				a=n%2;<br />
				System.out.print(a +&quot; &quot;);<br />
				n&#8211;;<br />
			}<br />
			System.out.println();<br />
		}<br />
	}<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: bharat		</title>
		<link>https://studentprojects.in/software-development/java/java-programs/basic/java-program-display-triangle-0-10-101-0101/comment-page-1/#comment-10524</link>

		<dc:creator><![CDATA[bharat]]></dc:creator>
		<pubDate>Thu, 17 Apr 2014 19:30:47 +0000</pubDate>
		<guid isPermaLink="false">http://studentprojects.in/?p=1354#comment-10524</guid>

					<description><![CDATA[the correct output is:
0 
1 0 
0 1 0 
1 0 1 0 

so please correct the question]]></description>
			<content:encoded><![CDATA[<p>the correct output is:<br />
0<br />
1 0<br />
0 1 0<br />
1 0 1 0 </p>
<p>so please correct the question</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
