A.Write#語句和Print#語句建立的順序文件格式完全一樣 B.Write#語句和Print#語句都能實現向文件中寫入數據 C.用Write#語句輸出數據,各數據項之間自動插入逗號,并且將字符串加上雙引號 D.若使用Print#語句輸出數據,各數據項之間沒有逗號,并且字符串不加雙引號
A.123,-34.56,input,2005-06-08 B."123","-34.56","input","2005-06-08" C.123,-34.56,"input",#2005-06-08# D.123-34.56input2005-06-08
A.Open"File1.dat"ForInputAs#1 B.Open"File1.dat"ForOutputAs#1 C.Open"C:\File1.dat"ForInputAs#1 D.Open"C:\File1.dat"ForOutputAs#1