这是我的代码:
#include "stdafx.h"
#include <iostream>
#include <string>
#include <sstream>
#include <math.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
int userInput = -9999;
userInput = ReadNumber();
WriteAnswer(userInput);
system("pause");
return 0;
};
int ReadNumber ()
{
int liInput = -9999;
cin >> liInput;
return liInput;
};
void WriteAnswer(int data)
{
cout << data << endl;
};
当我尝试编译时,它说:
1>错误 C3861:“ReadNumber”:未找到标识符
1>错误 C3861: 'WriteAnswer': 未找到标识符
为什么会出现上述错误?以及如何解决这个问题?
谢谢