Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将字符串连接到文件末尾或文件中的特定位置?以下命令中“*”的含义是什么:
write(10, *) 'blabla'
*指定程序用于写出变量的格式;它指定了列表导向的输出,这意味着编译器在编写变量时可以自由选择变量的合理表示。找出编译器决定是合理表示的最佳方法是吸吮它并查看;如果您不喜欢编译器所做的事情,请使用编辑描述符来负责。
*
你剩下的问题对我来说毫无意义,我无法回答。