fatal error C1004: unexpected end-of-file found报错

bruce421116 2015-04-13 06:06:07
VS下报错fatal error C1004: unexpected end-of-file found,代码如下:
[code=c][///
// This is example code from Chapter 6.6 "Trying the first version" of
// "Software - Principles and Practice using C++" by Bjarne Stroustrup
//

#include "std_lib_facilities.h"

//------------------------------------------------------------------------------

class Token{
public:
char kind; // what kind of token
double value; // for numbers: a value
Token(char ch) // make a Token from a char
:kind(ch), value(0) { }
Token(char ch, double val) // make a Token from a char and a double
:kind(ch), value(val) { }
};

//------------------------------------------------------------------------------

Token get_token() // read a token from cin
{
char ch;
cin >> ch; // note that >> skips whitespace (space, newline, tab, etc.)

switch (ch) {
//not yet case ';': // for "print"
//not yet case 'q': // for "quit"
case '(': case ')': case '+': case '-': case '*': case '/':
return Token(ch); // let each character represent itself
case '.':
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
{
cin.putback(ch); // put digit back into the input stream
double val;
cin >> val; // read a floating-point number
return Token('8', val); // let '8' represent "a number"
}
default:
error("Bad token");
}
}

//------------------------------------------------------------------------------

double expression(); // read and evaluate a Expression

//------------------------------------------------------------------------------

double term(); // read and evaluate a Term

//------------------------------------------------------------------------------

double primary() // read and evaluate a Primary
{
Token t = get_token();
switch (t.kind) {
case '(': // handle '(' expression ')'
{
double d = expression();
t = get_token();
if (t.kind != ')') error("')' expected");
return d;
}
case '8': // we use '8' to represent a number
return t.value; // return the number's value
default:
error("primary expected");
}
}
//------------------------------------------------------------------------------

int main()
{
try {
while (cin)
cout << expression() << '\n';
keep_window_open("~0");
}
catch (exception& e) {
cerr << e.what() << endl;
keep_window_open("~1");
return 1;
}
catch (...) {
cerr << "exception \n";
keep_window_open("~2");
return 2;
}
}

//------------------------------------------------------------------------------

double expression()
{
double left = term(); // read and evaluate a Term
Token t = get_token(); // get the next token
while (true) {
switch (t.kind) {
case '+':
left += term(); // evaluate Term and add
t = get_token();
break;
case '-':
left -= term(); // evaluate Term and subtract
t = get_token();
break;
default:
return left; // finally: no more + or -: return the answer
}
}
}

//------------------------------------------------------------------------------

double term()
{
double left = primary();
Token t = get_token(); // get the next token

while (true) {
switch (t.kind) {
case '*':
left *= primary();
t = get_token();
break;
case '/':
{
double d = primary();
if (d == 0) error("divide by zero");
left /= d;
t = get_token();
break;
}
default:
return left;
}
}
}

//------------------------------------------------------------------------------
code]
...全文
282 1 打赏 收藏 转发到动态 举报
写回复
用AI写文章
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
bruce421116 2015-04-13
  • 打赏
  • 举报
回复
自己解决了,代码本身没有任何问题。把网站上的源码粘贴到VS2013中进行了编码转换,在VS中显示的头尾字符正常,但是用vim打开就发现头尾两个字符是乱码,所以不能编译通过。看来还是原始的方式比较好。

64,654

社区成员

发帖
与我相关
我的任务
社区描述
C++ 语言相关问题讨论,技术干货分享,前沿动态等
c++ 技术论坛(原bbs)
社区管理员
  • C++ 语言社区
  • encoderlee
  • paschen
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
  1. 请不要发布与C++技术无关的贴子
  2. 请不要发布与技术无关的招聘、广告的帖子
  3. 请尽可能的描述清楚你的问题,如果涉及到代码请尽可能的格式化一下

试试用AI创作助手写篇文章吧