1
これは他の人からは回答がありましたが、私のコードに適用する方法はわかりません。あなたはそれがアライメントエラーの左側のオペランドにLvalueが必要です
c = a+b;
a+b
なければならないので、c
を設定したい
#include <iostream>
#include <string>
using namespace std;
int pythagorean()
int a;
int b;
int c;
cout << "A: ";
cin >> a;
cout << "B; ";
cin >> b;
a*=a;
b*=b;
a+b=c; //This is where I get the error. Any ideas?
cout << c;
return 0;
}
ありがとうございました。 –