#include<iostream>
using namespace std;
int main()
{
    cout<<"hi"<<endl;   
    return 0;
}

我正在使用 Sublime text 3,但收到此错误:

错误-“g"未被识别为内部或外部命令、可操作程序或批处理文件。

答案

尝试设置g++到您的系统路径。

你可以参考这个:http://stephencoakley.com/2015/01/21/guide-setting-up-a-simple-c-development-environment-on-windows

来自: stackoverflow.com