1

我正在尝试编写一个 C++ 程序,该程序输入 1 到 100 之间的五个数字,然后程序输出每个数字出现的次数。这是我到目前为止的内容,但我不断收到未解决的错误消息。

#include <iostream>
using namespace std;

void fillArray(int a[], int& size, int& numberUsed)
{
int i, hist[1000]; 

cout << "Enter 5 integers between 1 and 100" << endl;

for (i=0; i<size; i++)
{
cin >> a[i]; 
if(a[i] > 100)
{
i--; 
cout << "Num too big! 100 is max!" << endl;
}

}
numberUsed = i;


for (i=0; i<1000; i++)
hist[i] = 0;


for (i=0; i<numberUsed; i++)
{
hist[a[i]]++;
}

for (i=0; i<1000; i++)
if(hist[i])
cout << i << " occurs " << hist[i] << " times!" << endl;

}

错误消息显示以下“错误 LNK2019:函数 _ _tmainCRTStartup 中引用的未解析的外部符号主”

4

1 回答 1

0

您必须添加 main() 函数才能链接它。

于 2012-11-26T21:31:20.030 回答