C++程序怎么输出错误了。
我在学习c++语言,正在看c++primerplus这本书。可是这本书的第一个例题程序清单2.1myfirst.cpp怎么输出错误啊?程序我是照着书上写的。用的软件是VS...
我在学习c++语言,正在看c++ primer plus这本书。可是这本书的第一个例题 程序清单2.1myfirst.cpp 怎么输出错误啊?程序我是照着书上写的。用的软件是VS 2010旗舰版。程序我写出来让大家看。
// 程序清单2.1 myfirst.cpp : 定义控制台应用程序的入口点。
∕∕ myfirst cpp -- displays a message
#include 〈iostream〉 ∕∕ a PREPROCESSOR directive
int main() ∕∕ function header
﹛ ∕∕ start of function body
using namespace std; ∕∕ make definitions visible
cout ﹤﹤ "Come up and C++ me some time."; ∕∕ message
cout ﹤﹤ endl; ∕∕ start a new line
cout ﹤﹤ "You won't regret it!" ﹤﹤ endl; ∕∕ more output
return 0; ∕∕ terminate main()
﹜ ∕∕ end of function body
书上说输出结果是:
Come up and C++ me some time.
You won't regret it!
下面是VS2010旗舰版输出的结果:
1>------ 已启动生成: 项目: 程序清单2.1 myfirst, 配置: Debug Win32 ------
1>生成启动时间为 2013/11/19 13:29:04。
1>InitializeBuildStatus:
1> 正在对“Debug\程序清单2.1 myfirst.unsuccessfulbuild”执行 Touch 任务。
1>ClCompile:
1> 所有输出均为最新。
1> 程序清单2.1 myfirst.cpp
1>h:\c++里例题\程序清单2.1 myfirst\程序清单2.1 myfirst\程序清单2.1 myfirst.cpp(4): error C2006: “#include”: 应输入文件名,却找到“标识符”
1>h:\c++里例题\程序清单2.1 myfirst\程序清单2.1 myfirst\程序清单2.1 myfirst.cpp(4): fatal error C1083: 无法打开包括文件:“”: No such file or directory
1>
1>生成失败。
1>
1>已用时间 00:00:00.47
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
请大家帮我解答疑惑。 展开
// 程序清单2.1 myfirst.cpp : 定义控制台应用程序的入口点。
∕∕ myfirst cpp -- displays a message
#include 〈iostream〉 ∕∕ a PREPROCESSOR directive
int main() ∕∕ function header
﹛ ∕∕ start of function body
using namespace std; ∕∕ make definitions visible
cout ﹤﹤ "Come up and C++ me some time."; ∕∕ message
cout ﹤﹤ endl; ∕∕ start a new line
cout ﹤﹤ "You won't regret it!" ﹤﹤ endl; ∕∕ more output
return 0; ∕∕ terminate main()
﹜ ∕∕ end of function body
书上说输出结果是:
Come up and C++ me some time.
You won't regret it!
下面是VS2010旗舰版输出的结果:
1>------ 已启动生成: 项目: 程序清单2.1 myfirst, 配置: Debug Win32 ------
1>生成启动时间为 2013/11/19 13:29:04。
1>InitializeBuildStatus:
1> 正在对“Debug\程序清单2.1 myfirst.unsuccessfulbuild”执行 Touch 任务。
1>ClCompile:
1> 所有输出均为最新。
1> 程序清单2.1 myfirst.cpp
1>h:\c++里例题\程序清单2.1 myfirst\程序清单2.1 myfirst\程序清单2.1 myfirst.cpp(4): error C2006: “#include”: 应输入文件名,却找到“标识符”
1>h:\c++里例题\程序清单2.1 myfirst\程序清单2.1 myfirst\程序清单2.1 myfirst.cpp(4): fatal error C1083: 无法打开包括文件:“”: No such file or directory
1>
1>生成失败。
1>
1>已用时间 00:00:00.47
========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ==========
请大家帮我解答疑惑。 展开
3个回答
展开全部
#include <iostream>
int main()
{
using namespace std;
cout << "Come up and C++ me some time.";
cout << endl;
cout << "You won't regret it!" << endl;
return 0;
}
你打开了输入法输入这些符号,怎么可能会正常呢把我的直接复制下去用就明白了
更多追问追答
追问
成功生成了,可紧结着就退出了,要怎么弄。
还有,那这些符号我要怎么输入才正确呢?
追答
已经说了,不要打开输入法输入这些符号.
弄清楚
CTRL+F5
和
F5
之间的区别.
展开全部
/*
Come up and C++ me some time.
You won't regret it!
Press any key to continue
*/
#include <iostream> // 应使用半角符号,下同
int main() {
using namespace std;
cout << "Come up and C++ me some time.";
cout << endl;
cout << "You won't regret it!" << endl;
return 0;
}
追问
那符号我要怎么输入才正确呢?
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的”<< “和”〈〈“是不一样的,应该是<<
追问
符号我要怎么输入才正确呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询