注意你的标点符号有的是在中文输入法下输入的,所以编译不了,还有return和0;中间要分开,你可以复制下面的代码,对照一下:
#include//预处理命令
using namespace std; //命名空间
int main()
{
char str[9]; //变量
cout << "HELLOW WORLD"; //输出
cin >> str; //输入
cout << "HELLOW WORLD"; //输出
cout << str << endl; //输出
return 0; //函数返回
}
#include
using namespace std; //命名空间
int main () //用成中文括号了
{
char str[9]; //变量
cout << "HELLOW WORLD"; //输出
cin >> str; //输入
cout << "HELLOW WORLD"; //输出
cout << str << endl; //输出
return 0; //同理中文逗号,return 0; 要分开 //函数返回
}
return0后面的分号写成汉字的了。另cin >>输入时不得输入空格。