SubCommand1_Click() Dim studentAs studtype Dim record_noAs Integer record_no=1 With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With ______ Put # 1,record_no,student Close # 1 End Sub 要求在c:\的随机文件student.dat写入一条记录。应在程序中空行处填入以下哪条语句使该功能完整 A.Open"c:\student.dat"For InputAs # 1 len=len(student) B.Open"c:\student.dat"For randomAs # 1 len=len(student) C.Open"c:\student.dat"For OutputAs # 1 len=len(student) D.Open"c:\student.dat"ForAppendAs # 1 len=len(student)