Ошибка LMK2019: неразрешенный символ/фатальная ошибка LNK1120: 1 нерешенные внешние

При попытке сборки я получаю следующую ошибку:

1> MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol [email protected] referenced in function ___tmainCRTStartup
1> G:\CMPSC 101\Projects\Project 2\Project2\Debug\Project2.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Здесь код, который я написал в файле cpp:

// Source file name: Project2.cpp
// This program determines a user target heart rate and body mass index 
// when the user age, height, and weight are input

// Date written: 27 Feb 2014
// Date modified: 3 Mar 2014

#include <iostream>
using std::cout;
using std::endl;
#include <iostream>
using namespace std;

int main()
{

//age is the input variable from user, target_heart_rate is output after calculation
int age, target_heart_rate;
int weight;
int height, bmi;

//Display Program Introduction and Credits
cout << "Happy Valley Health Club" << endl;
cout << "Target Heart Rate Calculator" << endl;
cout << "Written by Paul D. Wagaman" << endl;

//Display Target Heart Rate Formula
cout << "Your Target Heart Rate is 70% of (220 - your age)" << endl;

//Prompt User to enter their age as a whole number
cout << "Please enter your age as a whole number" << endl;

//User inputs their age
cin >> age;

//Display Body Mass Index Formula
cout << "BMI (kg/m2) = [Weight (lbs) x 703] / Height (in2)" << endl;

//Prompt User to enter their age as a whole number
cout << "Please enter your weight (in pounds) as a whole number" << endl;

//User inputs their age
cin >> weight;

//Prompt User to enter their age as a whole number
cout << "Please enter your height (in inches) as a whole number" << endl;

//User inputs their age
cin >> height;

//Perform target heart rate calculation
//70%  of  ( 220 - age )
target_heart_rate = ((70 * (220-age))/100);

//Perform BMI calculation
//70%  of  ( 220 - age )
bmi = (weight * 703) / (height * height);

//Display user’s target heart rate
cout << "70%" << " ( " << "220" << " - " << age << " ) " << " = " << target_heart_rate << endl;
cout << "Your target heart rate is " << target_heart_rate << " beats per minute." << endl;

//Display user’s body mass index
cout << "Your BMI formula = (" << weight << "pounds" << " x " << "703)" << " / " << " ( " << height << " squared." << endl;
cout << "Your individual Body Mass Index is " << bmi << endl;

//Display "Thank You" message
cout << "Thank you for choosing Happy Valley Health Club – We care about YOUR health!";

return 0;

}

Может ли кто-нибудь пролить свет на то, что я делаю неправильно?

Ответ 1

Долгое время с тех пор, как я написал приложение Windows, но похоже, что вы создаете приложение Windows вместо консольного приложения, поэтому у вас должен быть WinMain (http://msdn.microsoft.com/en-us/library/windows/desktop/ms633559%28v=vs.85%29.aspx) в вашем коде где-то...

Ответ 2

Похоже, вы выбрали неправильный тип проекта. WinMain можно найти в программах Windows, но код, который вы показываете, предназначен для консольного приложения. Если вы сделали это в Visual Studio, возможно, вам придется воссоздать проект как консольное приложение, а не приложение Windows.