私はプログラミングでは新機能、配列ではweakです。ここでコーディングと質問があります。間違いがあった場合は私に見せてください。あなたのstruct
でC++配列 - 構造体の動的配列を作成するemployeeとdisplay
#include<iostream>
#include<string>
using namespace std;
struct Library
{
string Name[10];
int ID[10],Unit[10];
double Price[10];
};
struct Library L;
int main()
{
int book;
cout<<"Enter the number of book : ";
cin>>book;
for(int i=0; i<book; i++)
{
cout<<"\nBook Name : ";
cin>>L.Name[i];
cout<<"Book ID : ";
cin>>L.ID[i];
cout<<"Unit : ";
cin>>L.Unit[i];
cout<<"Price : ";
cin>>L.Price[i];
}
cout<<"You have entered these info : ";
cout<<"\nName \t ID \t Unit Price";
for(int i=0; i<book; i++)
{
cout<<"\n"<<L.Name[i]<<endl; cout<<"\t"<<L.ID<<"\t"<<L.Unit<<"\t"<<L.Price<<endl;
}
}
あなたは**それを試みたことがありますか?それは動作しましたか? – Steve
名前を除くすべてエラーコード(0x4a7090)を表示 – Zeshon
@ Zeshon私はそれが構造型のオブジェクトの動的に割り当てられた配列(割り当てられていない)はライブラリと名前を付けるべきであり、構造そのものはBookという名前にするべきだと思います。 –