我刚刚开始使用Nitrous.IO,我似乎无法在网上找到有关如何运行您在其中制作的C ++程序的任何信息。任何有关如何运行在Nitrous中制作的C ++应用程序的帮助都将是一个巨大的帮助。
答案 0 :(得分:1)
所有命令都将在控制台中运行
第1步:
使用以下命令进入相应的目录:
cd ./folder/subfolder/etc.
第2步:
输入以下命令以运行fileName.cpp程序:
// This will make a separate file named 'fileName'
// within the directory you are working in.
// This can now be run in the console.
g++ -o fileName fileName.cpp
第3步:
输入以下命令运行程序:
//The output will display in the console. Enjoy!
./fileName