本文介绍了一个子程序,它创建一个具有给定名称的文件并输出一个给定的内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

创建具有给定名称的文件的子例程,并将数组的内容输出到给定的命名文件

应该通过以下方式调用它:


& WriteToFile(``suppliers.txt'''',@ suppliers);其中`@suppliers''包含供应商的所有``name:number''''组合,'`suppliers.txt''''是要创建的文件的名称。

需要帮助!



a subroutine that creates a file with a given name and outputs the contents of a array to given named file
It should be called in the following way:

&WriteToFile(``suppliers.txt'''', @suppliers); where `@suppliers'' contains all the ``name: number'''' combinations for
the suppliers, and ``suppliers.txt'''' is the name of the file to create.
need help on this one !!!

推荐答案

展开 | 选择 | Wrap | 行号



展开 | 选择 | Wrap | 行号


这篇关于一个子程序,它创建一个具有给定名称的文件并输出一个给定的内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 06:42