<?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: Three ways to find minimum and maximum values in a Java array.</title>
	<atom:link href="http://www.zparacha.com/minimum-maximum-array-value/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zparacha.com/minimum-maximum-array-value/</link>
	<description>Effective programming and blogging tips by Zaheer Paracha</description>
	<lastBuildDate>Sat, 11 Feb 2012 03:00:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: hadi</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1905</link>
		<dc:creator>hadi</dc:creator>
		<pubDate>Wed, 11 Jan 2012 17:40:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1905</guid>
		<description>hi
i need some information about testing c programming 
is anybody can help me what i have to do?
i have my program but i donot know where i have to test it 
many thanks</description>
		<content:encoded><![CDATA[<p>hi<br />
i need some information about testing c programming<br />
is anybody can help me what i have to do?<br />
i have my program but i donot know where i have to test it<br />
many thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parul</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1902</link>
		<dc:creator>Parul</dc:creator>
		<pubDate>Wed, 11 Jan 2012 03:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1902</guid>
		<description>Thank you so much. Made the concept much clearer. Thanks again. 
Keep up the good work. :)</description>
		<content:encoded><![CDATA[<p>Thank you so much. Made the concept much clearer. Thanks again.<br />
Keep up the good work. <img src='http://www.zparacha.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tayyeb</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1768</link>
		<dc:creator>Tayyeb</dc:creator>
		<pubDate>Tue, 22 Nov 2011 11:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1768</guid>
		<description>import java.util.Scanner;
public class Array {
      public static void main(String[]args)
        {  
    	  int [][]marks=new int [2][2];
    	  fillArray(marks,2,2);
    	  max(marks,2,2);
        }
      public static void fillArray(int mmarks[][],int row ,int  coloumn){
    	  int k=0;
    	  Scanner input=new Scanner(System.in);
    	  for (int i = 0; i &lt; row ; i++){
    		   for(int j=0 ; j &lt; coloumn ; j++){
    			   k=k+1;
    			   System.out.println(&quot;Enter marks&quot;+k);
    			   mmarks[i][j]=input.nextInt();
    			   
    		   }
    		  
    		  
    	  }
    	  

      }
      public static void max(int mnmarks[][],int nrow,int ncoloumn){
    	  int maxValue=mnmarks[0][0];
    	  for (int i = 0; i &lt; nrow ; i++){
    		  for (int j = 0 ; j  maxValue){
    				  maxValue=mnmarks[i][j];
    			                              }
    			  
    		                                      }
    	                                 }
    	  
    	  System.out.println(&quot;highest=&quot;+maxValue);
      }
}</description>
		<content:encoded><![CDATA[<p>import java.util.Scanner;<br />
public class Array {<br />
      public static void main(String[]args)<br />
        {<br />
    	  int [][]marks=new int [2][2];<br />
    	  fillArray(marks,2,2);<br />
    	  max(marks,2,2);<br />
        }<br />
      public static void fillArray(int mmarks[][],int row ,int  coloumn){<br />
    	  int k=0;<br />
    	  Scanner input=new Scanner(System.in);<br />
    	  for (int i = 0; i &lt; row ; i++){<br />
    		   for(int j=0 ; j &lt; coloumn ; j++){<br />
    			   k=k+1;<br />
    			   System.out.println(&quot;Enter marks&quot;+k);<br />
    			   mmarks[i][j]=input.nextInt();</p>
<p>    		   }</p>
<p>    	  }</p>
<p>      }<br />
      public static void max(int mnmarks[][],int nrow,int ncoloumn){<br />
    	  int maxValue=mnmarks[0][0];<br />
    	  for (int i = 0; i &lt; nrow ; i++){<br />
    		  for (int j = 0 ; j  maxValue){<br />
    				  maxValue=mnmarks[i][j];<br />
    			                              }</p>
<p>    		                                      }<br />
    	                                 }</p>
<p>    	  System.out.println(&#8220;highest=&#8221;+maxValue);<br />
      }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: khue</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1723</link>
		<dc:creator>khue</dc:creator>
		<pubDate>Thu, 20 Oct 2011 07:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1723</guid>
		<description>I&#039;ve been helped a great deal. thank you all of you guys!!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been helped a great deal. thank you all of you guys!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iarap sana</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1690</link>
		<dc:creator>iarap sana</dc:creator>
		<pubDate>Thu, 29 Sep 2011 13:54:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1690</guid>
		<description>create an array of ten cells, store the value in the area at run tim. Find the largest and smallest element.</description>
		<content:encoded><![CDATA[<p>create an array of ten cells, store the value in the area at run tim. Find the largest and smallest element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iarap saba</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1689</link>
		<dc:creator>iarap saba</dc:creator>
		<pubDate>Thu, 29 Sep 2011 13:37:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1689</guid>
		<description>please provide me the following source code of java Programming.
Create an Array of ten cells, store the value in the area at run time. Find the find the largest and smallest element.</description>
		<content:encoded><![CDATA[<p>please provide me the following source code of java Programming.<br />
Create an Array of ten cells, store the value in the area at run time. Find the find the largest and smallest element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SeiferLeonheart</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1680</link>
		<dc:creator>SeiferLeonheart</dc:creator>
		<pubDate>Mon, 19 Sep 2011 00:34:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1680</guid>
		<description>Thanks, had to use part of this in a assignment,helped a lot. :D

Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks, had to use part of this in a assignment,helped a lot. <img src='http://www.zparacha.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhanush</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1676</link>
		<dc:creator>dhanush</dc:creator>
		<pubDate>Thu, 15 Sep 2011 01:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1676</guid>
		<description>great job</description>
		<content:encoded><![CDATA[<p>great job</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anoop shukla</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1671</link>
		<dc:creator>Anoop shukla</dc:creator>
		<pubDate>Tue, 13 Sep 2011 10:13:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1671</guid>
		<description>import java.util.* ;
class min
{
public static void main(String a1[])
{
Scanner in=new Scanner(System.in);
int i,min=0,max=0,a[];
a=new int[5];
System.out.println(“Enter elements of array”);
for(i=0;i&lt;a.length;i++)
{
a[i]=in.nextInt();
if(max&lt;a[i])
{
max=a[i];
}
}
min=max;
for(i=0;i&lt;a&gt;a[i]);
min=a[i];
}
}
System.out.println(“maxmium =”+max);
System.out.println(“miniumum = “+min);
}
}</description>
		<content:encoded><![CDATA[<p>import java.util.* ;<br />
class min<br />
{<br />
public static void main(String a1[])<br />
{<br />
Scanner in=new Scanner(System.in);<br />
int i,min=0,max=0,a[];<br />
a=new int[5];<br />
System.out.println(“Enter elements of array”);<br />
for(i=0;i&lt;a.length;i++)<br />
{<br />
a[i]=in.nextInt();<br />
if(max&lt;a[i])<br />
{<br />
max=a[i];<br />
}<br />
}<br />
min=max;<br />
for(i=0;i<a>a[i]);<br />
min=a[i];<br />
}<br />
}<br />
System.out.println(“maxmium =”+max);<br />
System.out.println(“miniumum = “+min);<br />
}<br />
}</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anoop shukla</title>
		<link>http://www.zparacha.com/minimum-maximum-array-value/comment-page-1/#comment-1670</link>
		<dc:creator>Anoop shukla</dc:creator>
		<pubDate>Tue, 13 Sep 2011 10:07:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.zparacha.com/minimum-maximum-array-value/#comment-1670</guid>
		<description>import java.util.* ;
class min
{
public static void main(String a1[])
{
Scanner in=new Scanner(System.in);
int i,min=0,max=0,a[];
a=new int[5];
System.out.println(&quot;Enter elements of array&quot;);
for(i=0;i&lt;a.length;i++)
{
a[i]=in.nextInt();
if(max&lt;a[i])
{
max=a[i];
}
}
min=max;
for(i=0;i&lt;a&gt;a[i])
	{
min=a[i];
	}
}
System.out.println(&quot;maxmium =&quot;+max);
System.out.println(&quot;miniumum = &quot;+min);
}
}</description>
		<content:encoded><![CDATA[<p>import java.util.* ;<br />
class min<br />
{<br />
public static void main(String a1[])<br />
{<br />
Scanner in=new Scanner(System.in);<br />
int i,min=0,max=0,a[];<br />
a=new int[5];<br />
System.out.println(&#8220;Enter elements of array&#8221;);<br />
for(i=0;i&lt;a.length;i++)<br />
{<br />
a[i]=in.nextInt();<br />
if(max&lt;a[i])<br />
{<br />
max=a[i];<br />
}<br />
}<br />
min=max;<br />
for(i=0;i<a>a[i])<br />
	{<br />
min=a[i];<br />
	}<br />
}<br />
System.out.println(&#8220;maxmium =&#8221;+max);<br />
System.out.println(&#8220;miniumum = &#8220;+min);<br />
}<br />
}</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

