jsp中lang.Math类中的max()等方法如何调用。下面的max()有错。哪位高手支支招!

2025-01-31 12:25:49
推荐回答(1个)
回答1:

float c=max(a,b); 错;
应该float c=Math.max(a,b);