Thu Jan 15, 2009 10:53 pm
<HTML>
<HEAD>
<TITLE> Multidimensional Arrays in JSP</TITLE>
</HEAD>
<BODY>
<H1>Using Multidimensional Arrays</H1>
<%
double cars[][] = new double[2][10];
cars[0][2] = 1111.09;
cars[1][4] = 19000.07;
out.println("Price of mazda cars with catergory 2 is ;&nbps;" + cars[0][2] + "$ <BR>");
out.println("Price of BMW cars with catergory 4 is" + cars[1][4]+"$ <BR>");
%>
</BODY>
</HTML>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.