关于vscode运行c++的一个问题
请问为什么我按照老乌龟翻译的视频做了,运行了如下程序:#include <bits/stdc++.h>
using namespace std;
void o(int x){
cout<<x;
}
void t(int x){
cout<<x*2-1;
}
void s(int x){
cout<<3*x-11;
}
int main(){
int x;
cin>>x;
if(x<1) o(x);
if(x>=1&&x<10) t(x);
if(x>=10) s(x);
return 0;
}
结果报了给这样的错:(翻译来自于百度翻译)
error: no iconv implementation, cannot convert from UTF-8 to GBK
错误:没有iconv实现,无法从UTF-8转换为GBK
说不定要把源文件已gbk的编码格式保存
页:
[1]