0

我尝试使用 Notepad++ 编写 c++ 代码,并在 youtube 上遵循了一些教程,这就是我所做的:

- 使用 mingw64 安装 gcc/g++ 编译器

- 在 N++ 上安装 NppExec 插件

- 键入以下编译器脚本并保存为 C++:

NPP_SAVE cd
$(CURRENT_DIRECTORY)
g++ $(FILE_NAME)
cmd /c $(CURRENT_DIRECTORY)\program.exe

无论如何,无论何时编译一个程序,例如一个简单的程序

#include <iostream>
using namespace std;
int main(){
    cout << "Online\n";
    system("pause"); //So that cmd doesn't disappear immeadiately on running.
    return 0;
}

控制台显示以下警告:
"C:\Users\pc\Desktop\Courses\Projects\C\program.exe' is not recognized as an internal or external command, operable program or batch file."
我的问题是,当我在 cmd 上运行程序时,它运行良好,但在链接期间显示的错误表明该文件夹在 任何解释
中都不存在? 谢谢!%PATH%

4

1 回答 1

0

好吧,我基本上所做的就是更改脚本,

cmd /c $(CURRENT_DIRECTORY)\program.exe

以后要

cmd /c $(CURRENT_DIRECTORY)\a.exe

控制台工作正常,甚至收到输入

这是一个类似问题的链接:

如何在 Notepad++ 中编译/执行 C++ 代码

于 2021-12-17T22:46:52.683 回答