ユーザーが入力しなければならない2つの多項式を乗算します。
最初のステップ(ユーザーからの情報の取得)で、次のエラーが発生しました:
Unhandled exception at 0x00a315cb in linked polinomials.exe:
0xC0000005: Access violation writing location 0x00000000.
その後、このエラーが発生しました。多項式の他の要素を入力したいと思います。
struct polynomial{
float coef ;
int exp ;
polynomial *next ;
} *first, *second ,*result;
first = new(polynomial);
//init first
first ->coef = 0;
first->exp = 0 ;
first->next = 0;
while(ch != 'n')
{
cin >> temp_c ;
cin >> temp_e ;
first->coef = temp_c;
first->exp = temp_e;
cout << "Do you want to enter another ? (y or n) :" << endl;
ch = getch();
first = first->next;
}