このエラーの原因は何ですか?私はそれをgoogle'dと最初のいくつかのソリューションは、何かがライブラリと主な機能に間違っていたが見つかりましたが、両方の問題でうまくいくようだ、私は両方を再入力!これを引き起こす原因は何ですか?C++致命的なエラーLNK1120:1未解決の外部
これが役に立つかもしれません:
MSVCRTD.LIB(crtexew.obj):エラーLNK2019:未解決の外部シンボルWinMain関数が関数内で参照16 @ _ _tmainCRTStartup
#include <iostream>
using namespace std;
int main()
{
const double A = 15.0,
B = 12.0,
C = 9.0;
double aTotal, bTotal, cTotal, total;
int numSold;
cout << "Enter The Number of Class A Tickets Sold: ";
cin >> numSold;
aTotal = numSold * A;
cout << "Enter The Number of Class B Tickets Sold: ";
cin >> numSold;
bTotal = numSold * B;
cout << "Enter The Number of Class C Tickets Sold: ";
cin >> numSold;
cTotal = numSold * C;
total = aTotal + bTotal + cTotal;
cout << "Income Generated" << endl;
cout << "From Class A Seats $" << aTotal << endl;
cout << "From Class B Seats $" << bTotal << endl;
cout << "From Class C Seats $" << cTotal << endl;
cout << "-----------------------" << endl;
cout << "Total Income: " << total << endl;
return 0;
}
完全なエラーを投稿してください。未解決のシンボルはどれですか? –
未解決のシンボルは?エラーテキスト全体を入力してください。 – Lou
解決されていないものがLNK2001エラーに表示されるようにする必要があります。それらは何ですか? – shf301