私はJavaにとって本当に新しいので、数ヶ月前にクラスのプログラミングを始めました。私はこのプロジェクトに完全に完全に立ち向かいました。 This is the project.whileループでは、過去のループの変数を現在のループの同じ変数にどのように追加するのですか?
これはこれまでのコードです。
double mile;
double gas;
int week;
double mpg;
double totalMile;
double totalGas;
week = 0;
gas = 0;
mile = 0;
totalMile = 0;
totalGas = 0;
Scanner reply = new Scanner(System.in);
System.out.println("Please enter the amount of miles.");
mile = reply.nextDouble();
while(mile != -99)
{
week++;
System.out.println("Please enter the amount of gas (in gallons) purchased for this week.");
gas = reply.nextDouble();
mpg = mile/gas;
System.out.println("Week: "+week+"");
System.out.println("Miles: "+mile+" Vacation Miles Traveled: "+totalMile+"");
System.out.println("Gallons: "+gas+" Vacation Gallons Purchased: "+totalGas+"");
System.out.println("MPG: "+mpg+"");
System.out.println("Please enter the amount of miles.");
mile = reply.nextDouble();
}
私は本当に上で立ち往生しています唯一の部分は、「休暇マイル/ガス」の値を取得する方法ですが、私はwhileループで同じ変数の合計をしながら、アップ追加する方法を知りません。
あなたは1つのwhileループを持っています。それだけですが、他のループからの変数を追加しますか? – prsvr