查询 dev c++ 运行的程序

发布于 2024-12-23 14:31:16 字数 95 浏览 2 评论 0原文

谁能告诉我如何在 Dev-C++ 中运行程序时将文本输入粘贴到 Dev-C++ 控制台(命令行 shell)中? 还有其他简单的 IDE 允许用户使用单个源文件而不创建项目吗?

Can anybody tell me how I can paste text input into the Dev-C++ console (command line shell) while running a program in Dev-C++?
Also is there any other simple IDE which allows users to work with a single source file w/o creating a project?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放赐 2024-12-30 14:31:16

据我所知,dev-cpp 在启动 consol 应用程序时启动 Windows 命令行窗口。因此,如果您的代码中有类似的内容

cout << "enter a char: ";
cin >> c;

,控制台窗口将等待输入。

回答你的第二个问题:是和否

是的:你可以使用 g++.exe(witch 带有 dev-cpp)和 notepade.exe(witch comses 与 windows)
并使用commad g++.exe source.cpp 编译源代码,并通过在控制台窗口中键入a.exe 来运行应用程序,您必须打开自己并导航到该目录source.cpp 所在的位置。

否: (g++.exe + notepade.exe) == IDE

请注意,您必须扩展 PATH 环境变量才能使用 g++.exe,而无需其完整路径

af far as i can remember dev-cpp start a windows commadline window when a consol application is started. so if you have somethig like

cout << "enter a char: ";
cin >> c;

in your code, the consol window will be wating for input.

an to your second question: Yes and No

Yes: you can use g++.exe (witch comes with dev-cpp) and notepade.exe (witch comses with windows)
and compile your source using commad g++.exe source.cpp and run you application by typing a.exe in a console window witch you have to open yourself and navigate to the directory where source.cpp is located.

No: (g++.exe + notepade.exe) == IDE

Note that you have to extend the PATH envirenment variable to be able to use g++.exe without fullpath to it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文