CodeBloks 在运行C++代码时,中文无法编译
路过的大佬们看一下{:10_266:} 搞了好一阵了,在编译C语言时好好的代码:
#include<iostream>
using namespace std;
int main()
{
//cout :输出对象
cout << "Hello Word\n";
cout << "英雄名字:寒冰射手艾希\n";
cout << "伤害:56\t攻击距离:600\n"
<< "护甲:15.5(+3.4)\t魔抗:30(+0.0)"
<< "生命值:395(+79)\t生命恢复:0.9(+0.11)";
return 0;
//出现的错误
// ||=== Build file: "no target" in "no project" (compiler: unknown) ===|
//D:\Code\c和c++\Hellow Word.cpp||In function 'int main()':|
//D:\Code\c和c++\Hellow Word.cpp|9|error: converting to execution character set: Illegal byte sequence|
//D:\Code\c和c++\Hellow Word.cpp|10|error: converting to execution character set: Illegal byte sequence|
//D:\Code\c和c++\Hellow Word.cpp|11|error: converting to execution character set: Illegal byte sequence|
//D:\Code\c和c++\Hellow Word.cpp|12|error: converting to execution character set: Illegal byte sequence|
//||=== Build failed: 4 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
//
//译文:| ===构建文件:“无项目”中的“无目标”(编译器:未知)=== |
//D:\ Code \ c和c ++ \ Hellow Word.cpp ||在函数“ int main()”中:|
//D:\ Code \ c和c ++ \ Hellow Word.cpp | 9 |错误:转换为执行字符集:非法字节序列|
//D:\ Code \ c和c ++ \ Hellow Word.cpp | 10 |错误:转换为执行字符集:非法字节序列|
//D:\ Code \ c和c ++ \ Hellow Word.cpp | 11 |错误:转换为执行字符集:非法字节序列|
//D:\ Code \ c和c ++ \ Hellow Word.cpp | 12 |错误:转换为执行字符集:非法字节序列|
//|| ===构建失败:4个错误,0个警告(0分钟,0秒)=== |
} 少了个大括号吧
#include<iostream>
using namespace std;
int main()
{
//cout :输出对象
cout << "Hello Word\n";
cout << "英雄名字:寒冰射手艾希\n";
cout << "伤害:56\t攻击距离:600\n"
<< "护甲:15.5(+3.4)\t魔抗:30(+0.0)"
<< "生命值:395(+79)\t生命恢复:0.9(+0.11)";
return 0;
} qiuyouzhi 发表于 2020-3-7 12:13
少了个大括号吧
有大括号呐{:10_266:} 此帐号已被注销 发表于 2020-3-7 13:09
有大括号呐
那你就用Dev-C++吧,总之我这里Dev-C++没有问题 应该是编码问题吧,把源文件的编码改成utf-8试试
已解决
具体方法
编译器设置 -> 全局编译器设置 -> 其他编译器设置
加入两个语句
-finput-charset=GBK
-fexec-charset=GBK
我使用的是汉化的Code
回帖。 没有鱼币啊。。。 0
学习一下 0 没用过这编译器 50%,我试试
页:
[1]