当前位置: 技术问答>java相关
高分求救!新手的问题!进来都有分!
来源: 互联网 发布时间:2015-11-17
本文导语: 用jsp编一个小程序实现输入数字,然后按按钮找到最大的数字,具体怎样编? 请各位大虾帮忙!我真的不懂!也没有基础! | 具体一些啊! 给你个小例子吧 xxx.jsp max) max=a; if (b>max) max=b; if (c>max) m...
用jsp编一个小程序实现输入数字,然后按按钮找到最大的数字,具体怎样编? 请各位大虾帮忙!我真的不懂!也没有基础!
|
具体一些啊!
给你个小例子吧
xxx.jsp
max) max=a;
if (b>max) max=b;
if (c>max) max=c;
%>
The max number is
a
b
c
给你个小例子吧
xxx.jsp
max) max=a;
if (b>max) max=b;
if (c>max) max=c;
%>
The max number is
a
b
c
|
//希望对你有帮助
public class MaxNumber
{
public static int getMax;
public MaxNumber()
{
getMax=0;
}
public static void main(String[] arr)
{
int temp=0;
int i_temp=0;
int i_arg=0;
for(int i=1;ii_temp) temp=i;
}
getMax = temp;
System.out.println("Max Number is No." + (temp+1) + ",value is:" + arr[temp]);
}
}
public class MaxNumber
{
public static int getMax;
public MaxNumber()
{
getMax=0;
}
public static void main(String[] arr)
{
int temp=0;
int i_temp=0;
int i_arg=0;
for(int i=1;ii_temp) temp=i;
}
getMax = temp;
System.out.println("Max Number is No." + (temp+1) + ",value is:" + arr[temp]);
}
}
|
换个版面提一下,我不明白jsp