学校のプロジェクトで助けが必要です。私はそれに取り組んできましたが、最終的に、最初の走行距離計と最後の走行距離計 = 総走行距離を出力する方法を見つけました。総費用として、レンタル 1 日あたり 15 ドル、さらに 1 マイルあたり 0.12 ドルを追加する必要があります。どうすればいいですか?ここに私が今持っているコードがあります:
//Step 1: Declaring variables to store our information.
decimal beginningOdometerDecimal;
decimal endingOdometerDecimal;
decimal rentedDecimal;
decimal totalSaleDecimal;
decimal averageSalesDecimal;
decimal carsReturned;
decimal totalMilesDecimal;
decimal finalCostDecimal;
//Step 2: Get the information from the user.
beginningOdometerDecimal = Decimal.Parse(txtBegin.Text);
endingOdometerDecimal = Decimal.Parse(txtEnd.Text);
rentedDecimal = Decimal.Parse(txtRent.Text);
//Step 3: Mathmatematical Calculations.
totalMilesDecimal = endingOdometerDecimal - beginningOdometerDecimal;
finalCostDecimal = totalMilesDecimal * (Decimal)0.12 + rentedDecimal + 15;
ご覧のとおり、使用した finalCostDecimal は、totalmilesdecimal * $0.12 +rentedDecimal + 15 に等しくなります。正しいコードを使用したとは思いません。誰でもここで私を助けてもらえますか? 私は立ち往生していて、たくさん試しました。ありがとう!