写出一个能找出a,b,c,d四个数中最大值的算法

问题描述:

写出一个能找出a,b,c,d四个数中最大值的算法
本体选自《算法与程序框图》
谢谢!

int [] num=new int[2];
num={a,b,c,d};//a,b,c,d分别代表4个数
int temp=0;
temp=num[0];
for(int i=0;inum[i])
{
temp=num[i];
}
}
System.out.println(temp);