C++ 入門書第 5 版の演習問題で、独自のバージョンのsales_data
クラスを作成するよう求められました。
これが私がした方法です
#include <iostream>
#include <string>
struct sales data
{
string bookno;
unsigned int books sold;
double revenue;
};
int main()
{
return 0;
}
これを実行すると、次のエラーが発生します。
Variable sales_data has an initializer, but an incomplete type
String was not declared in this scope (How do I declare a string?)