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 个 ==========
请大家帮我解答疑惑。
展开
 我来答
百度网友6205bc1
2013-11-19 · TA获得超过6004个赞
知道大有可为答主
回答量:5933
采纳率:20%
帮助的人:2745万
展开全部
#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
之间的区别.
xoaxa
2013-11-19 · TA获得超过8608个赞
知道大有可为答主
回答量:6415
采纳率:72%
帮助的人:3432万
展开全部

/*

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;
}
追问
那符号我要怎么输入才正确呢?
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
哲哥爷爷
2013-11-19
知道答主
回答量:6
采纳率:0%
帮助的人:3.8万
展开全部
你的”<< “和”〈〈“是不一样的,应该是<<
追问
符号我要怎么输入才正确呢?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式