-2

車の年あたりのコストと、10% 後の車のコストを計算するために作業する必要があるコードがあります。

void関数に関数定義を追加する必要があることはわかっています(これは、どのように行うべきか、何を書くべきかわかりません。)

また、いくつかを追加しましたが、残りを取得できないメイン関数を追加します

助けてください。私は永遠に試しました。

#include <iostream>
using namespace std;

struct Car;

  int year;
  double cost;

void read_car_record(Car&, new_car);


void Car update_cost(car old_record);


}
 int main(){
cout << "enter the year of the car: "<<endl;
   cin<< "year";
cout << "Enter the cost of the car: "<<endl;
   cin<< "cost";
4

2 に答える 2

0

私はあなたが望むと信じています

struct Car{
    int year;
    double cost;
};

また、関数の署名が正しくありません。update_cost は void (何もない) または Car を返しますが、両方は返しません。どちらかを選ばなければなりません

于 2013-11-05T19:11:40.250 に答える