查询 dev c++ 运行的程序
谁能告诉我如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,dev-cpp 在启动 consol 应用程序时启动 Windows 命令行窗口。因此,如果您的代码中有类似的内容
,控制台窗口将等待输入。
回答你的第二个问题:是和否
是的:你可以使用 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
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 typinga.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