<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Tech-Recipes - Latest Comments in Java for loop iteration syntax</title><link>http://tech-recipes.disqus.com/</link><description>Cookbook of Tech Tutorials</description><atom:link href="https://tech-recipes.disqus.com/java_for_loop_iteration_syntax_java_programming_tech_recipes/latest.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Sat, 09 Jul 2011 07:36:04 -0000</lastBuildDate><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-246648983</link><description>&lt;p&gt;what will be the code of&lt;br&gt;                      1&lt;br&gt;                   2     2&lt;br&gt;             3        3     3&lt;br&gt;        4       4         4     4&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rampravesh Mourya</dc:creator><pubDate>Sat, 09 Jul 2011 07:36:04 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-242482074</link><description>&lt;p&gt;So, just how many people are looking for homework answers here......?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bob</dc:creator><pubDate>Tue, 05 Jul 2011 06:55:05 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-235224360</link><description>&lt;p&gt;how to write a java program to get a o/p as follows?&lt;/p&gt;&lt;p&gt;1&lt;br&gt;12&lt;br&gt;123&lt;br&gt;1234&lt;br&gt;12345&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Amtechxl</dc:creator><pubDate>Sun, 26 Jun 2011 13:18:27 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-204926794</link><description>&lt;p&gt; nice coments&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Chris</dc:creator><pubDate>Tue, 17 May 2011 04:01:03 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-157578600</link><description>&lt;p&gt;how about for stacking??&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">GameMaster</dc:creator><pubDate>Mon, 28 Feb 2011 02:54:21 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-157143619</link><description>&lt;p&gt;for(int a=1;a&amp;lt;=4;a++){&lt;br&gt;for(int b=1;b&amp;lt;=a;b++){&lt;br&gt;System.out.print("#");&lt;br&gt;}&lt;br&gt;System.out.println();&lt;br&gt;}&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sampath Liyanage</dc:creator><pubDate>Sun, 27 Feb 2011 07:49:21 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-156424730</link><description>&lt;p&gt;how to write a java program to display following design&lt;br&gt;???#&lt;br&gt;???##&lt;br&gt;???###&lt;br&gt;####&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Janani_kaushalya</dc:creator><pubDate>Sat, 26 Feb 2011 04:47:13 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-156424333</link><description>&lt;p&gt;how to write a java program to display following design&lt;br&gt;   #&lt;br&gt;   ##&lt;br&gt;   ###&lt;br&gt;####&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Janani_kaushalya</dc:creator><pubDate>Sat, 26 Feb 2011 04:43:29 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-155587706</link><description>&lt;p&gt;how do i give the option to exit or to go back to begining, such as a calculator code&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Parth Thirteen</dc:creator><pubDate>Thu, 24 Feb 2011 16:44:15 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-154191061</link><description>&lt;p&gt;how to print as follows?&lt;br&gt;   *&lt;br&gt;  * *&lt;br&gt; * * *&lt;br&gt;* * * *&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">sri</dc:creator><pubDate>Tue, 22 Feb 2011 15:44:05 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-152075778</link><description>&lt;p&gt;class For5&lt;br&gt;{&lt;br&gt;public static void main(String args[])&lt;br&gt;{&lt;/p&gt;&lt;p&gt;int array[][]=new int[4][5];&lt;/p&gt;&lt;p&gt;int k=1;&lt;br&gt;for(int i=0; i&amp;lt;4;i++)&lt;br&gt;{&lt;br&gt;for(int j=0;j&amp;lt;i;j++) {="" array[i][j]="k;" }="" k++;="" }="" for(int="" i="0;" i&amp;lt;4;i++)="" {="" for(int="" j="0;j&amp;amp;lt;i;j++)" {="" system.out.print(array[i][j]+"");="" }="" system.out.println();="" }="" }="" }=""&amp;gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Miracle_ss</dc:creator><pubDate>Fri, 18 Feb 2011 22:23:36 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-142499604</link><description>&lt;p&gt;use english language everytime you post your reply here,use this language so that the world can understand you!!!,,i didnt redicule you when i make my reply iim just stating the fact,please learn to grow up and solve your own program? &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">best programmer of jhcsc</dc:creator><pubDate>Tue, 08 Feb 2011 05:07:33 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-142498435</link><description>&lt;p&gt;use english language everytime you post your reply here,use this language so that the world can understand you!!!,,i didnt redicule you when i make my reply iim just stating the fact,please learn to grow up and solve your own program?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">best programmer of jhcsc</dc:creator><pubDate>Tue, 08 Feb 2011 05:02:10 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-138064612</link><description>&lt;p&gt;public static void main(String[]args)&lt;br&gt;{&lt;br&gt;int a,b,c;&lt;br&gt;System.out.println(" press enter number:");&lt;br&gt;a=EasyIn.getInt();&lt;br&gt;b=a;&lt;br&gt;c=b;&lt;br&gt;for( a=2; a&amp;lt;=b; a++)&lt;br&gt;{&lt;br&gt;for( b=1; b&amp;lt;=c; b++)&lt;br&gt;{&lt;br&gt;System.out.print("*");&lt;br&gt;}&lt;br&gt;System.out.println();&lt;br&gt;}&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ajuopel</dc:creator><pubDate>Tue, 01 Feb 2011 03:35:00 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-138052901</link><description>&lt;p&gt;boang ka bcen borit rna weeeeeeeeeee&lt;br&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ajuopel</dc:creator><pubDate>Tue, 01 Feb 2011 03:05:22 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-138017701</link><description>&lt;p&gt;to ajuopel and yalmamatter,,just answer on your own,,,dont depend on me ok??hahhahaha&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">best programmer of jhcsc</dc:creator><pubDate>Tue, 01 Feb 2011 00:02:28 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-138016079</link><description>&lt;p&gt;how to program using for loop,if u input 3 the result is :&lt;br&gt;333&lt;br&gt;444&lt;br&gt;555 if input 2 the result is :&lt;br&gt;22&lt;br&gt;33 if u input 4 the output is:&lt;br&gt;4444&lt;br&gt;5555&lt;br&gt;6666,,&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Yalmamatter</dc:creator><pubDate>Mon, 31 Jan 2011 23:58:11 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-134810569</link><description>&lt;p&gt;nice&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Shennie Geronimo</dc:creator><pubDate>Wed, 26 Jan 2011 10:16:47 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-134244038</link><description>&lt;p&gt;how to program the ff. output?&lt;br&gt;333&lt;br&gt;444&lt;br&gt;555&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Yalmamatter</dc:creator><pubDate>Tue, 25 Jan 2011 04:40:29 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-134216065</link><description>&lt;p&gt;how 2 program in java if i enter  4  the out put is like this&lt;br&gt;4&lt;br&gt;****&lt;br&gt;****&lt;br&gt;****&lt;br&gt;****&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ajuopel</dc:creator><pubDate>Tue, 25 Jan 2011 03:00:08 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-132350553</link><description>&lt;p&gt;                  *&lt;br&gt;                 **&lt;br&gt;                ***&lt;br&gt;               ****&lt;br&gt;how to do this&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rea_sweety1990</dc:creator><pubDate>Fri, 21 Jan 2011 05:17:54 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-130466059</link><description>&lt;p&gt;if i type 4 then the result...&lt;/p&gt;&lt;p&gt;****&lt;br&gt;****&lt;br&gt;****&lt;br&gt;****&lt;/p&gt;&lt;p&gt;anyone can teach me how?.....i need that program this January 20, 2011..ASAP...please help me..&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Musee21</dc:creator><pubDate>Tue, 18 Jan 2011 06:18:55 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-105414587</link><description>&lt;p&gt;how do u make a code tht takes a number from the user and adds up by it like if the person was to put 2 it would go 2 4 6 8 all the way up to 100?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Drew T</dc:creator><pubDate>Tue, 30 Nov 2010 22:25:46 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-98764144</link><description>&lt;p&gt;How do I creat a for loop which accepts an integer value/values for the variable age, and displays number from up to the entered number.&lt;br&gt;Example:&lt;br&gt;Please enter age:3&lt;br&gt;lets Count!&lt;br&gt;1&lt;br&gt;2&lt;br&gt;3&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">van</dc:creator><pubDate>Thu, 18 Nov 2010 07:17:59 -0000</pubDate></item><item><title>Re: Java for loop iteration syntax</title><link>http://www.tech-recipes.com/rx/672/java-for-loop-iteration-syntax/#comment-96412296</link><description>&lt;p&gt;how about dis one?&lt;/p&gt;&lt;p&gt;               *&lt;br&gt;              ***&lt;br&gt;              ****&lt;br&gt;            *******&lt;br&gt;           *********&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">francis</dc:creator><pubDate>Thu, 11 Nov 2010 20:45:48 -0000</pubDate></item></channel></rss>