如何在for循环中捕获计数器的特定值,为此我得到最大计算值...例如:
import com.imonPhysics.projectile2;
public class motion2{
public static void main(String[] args){
double range=0,v=35,maxrange=0,angle=0;
int x=0;
projectile2 p1=new projectile2();
System.out.println("the given velocity is: 20 m/s \n" );
System.out.println("The value of g is: 9.8 m/s^2\n\n" );
for(int j=0;j<=90;j+=5){
x=j;
range=p1.calculate(v,j);
System.out.println("For the angle :" + j+" the range is: " + range);
if(range > maxrange)maxrange=range;
}
System.out.println(" the maximum range is :"+ maxrange);
System.out.println(" the angle at which the range is max is : " + angle);
}
}
如何捕捉最大范围的角度。
答案 0 :(得分:5)
如果我正确理解您的问题,您可以使用与确定maxrange
完全相同的方法:
for (...) {
...
if (range > maxrange) {
maxrange = range;
angle = j; // <--
}
}
答案 1 :(得分:1)
也许我不能正确理解这个问题,但是如果你想要达到达到最大范围的角度,那么你就可以在if中做angle = j
。