保存扩展名为 .f90 的文件
我在写字板中输入源代码并将其另存为 addition.f90,但不幸的是,Windows 提供的唯一选项是文本文件、rtf 等。
我正在使用适用于 Windows 的 G95 编译器。
I typed the source code in WordPad and saved it as addition.f90 but, unfortunately, the only options Windows provides are text files, rtf's, and so forth.
I am using the G95 compiler for Windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议你使用一个像样的文本编辑器。 看看 notepad++,VIM, GNU Emacs > 或类似的。
要在 Windows 中重命名文件,您可以使用命令提示符:
或者可以使用 Windows 资源管理器。 确保将其设置为显示文件扩展名。 在工具|下 文件夹选项,取消选择“隐藏已知文件类型的扩展名”。 要重命名文件,请选择该文件并按 F2,或者右键单击并选择重命名。
I suggest you use a decent text editor instead. Have a look at notepad++, VIM, GNU Emacs or similar.
To rename a file in Windows you either use the command prompt:
Or you can use the Windows explorer. Make sure you set it up to display file extensions. Under Tools | Folder Options, unselect 'Hide extensions for known file types'. To rename a file, either select it and press F2, or right-click and select Rename.
在“写字板保存”对话框中,在双引号中键入文件名,例如
"addition.f90"
。 这将覆盖默认扩展名。In the WordPad Save dialog, type the filename in double quotes, e.g.
"addition.f90"
. This will override the default extension.