2个回答
展开全部
写了个获取最大值的例子,不知道是不是你想要的答案。
public class ArrayTypeTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
float[] testArray = {1,1.1f,1.3f};
float max = testArray[0];
for(float f : testArray){
if(f > max){
max = f;
}
}
System.out.println(max);
}
}
public class ArrayTypeTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
float[] testArray = {1,1.1f,1.3f};
float max = testArray[0];
for(float f : testArray){
if(f > max){
max = f;
}
}
System.out.println(max);
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询