代码
#include <iostream>
#include <curses.h>
#include <stdlib.h>
int main() {
std::cout << "Hello, World!" << std::endl;
std::cout << "Hello, World!";
return 0;
}
我插入的所有指令/文字变成灰色...我刚刚安装 CLION ,也许我错过了什么?
答案 0 :(得分:0)
CLion灰色包括您的代码中未使用的内容。
std::cout
来自iostream(并不是灰色的)
尝试构建Ctrl + F9
并调试Shift + F9
您的代码,您将看到您的输出
Hello, World!
Hello, World!
Process finished with exit code 0