c++ 初次写程序 hello world 总是显示错误 应该是按照书上一一输入的 代码如下

2024-12-18 16:53:50
推荐回答(3个)
回答1:

注意你的标点符号有的是在中文输入法下输入的,所以编译不了,还有return和0;中间要分开,你可以复制下面的代码,对照一下:

#include //预处理命令
using namespace std; //命名空间
int main()
{
char str[9]; //变量
cout << "HELLOW WORLD"; //输出
cin >> str; //输入
cout << "HELLOW WORLD"; //输出
cout << str << endl; //输出
return 0; //函数返回
}

回答2:

#include //预处理命令
using namespace std; //命名空间
int main () //用成中文括号了
{
char str[9]; //变量
cout << "HELLOW WORLD"; //输出
cin >> str; //输入
cout << "HELLOW WORLD"; //输出
cout << str << endl; //输出
return 0; //同理中文逗号,return 0; 要分开 //函数返回
}

回答3:

return0后面的分号写成汉字的了。另cin >>输入时不得输入空格。