题目内容

报君黄金台上意,提携玉龙为君死。用了谁的典故?

A. 庄子
B. 苏武
C. 燕昭王
D. 曹操

查看答案
更多问题

李贺著有《李长吉文集》,后人誉为“诗鬼”。

A. 对
B. 错

雁门太守行,是乐府曲名。行,是歌行的意思,雁门是地名,古代的时候是重要的关口。雁门关在现在的山东,这里自古是战略要地,兵家必争。

A. 对
B. 错

程序解析:1public struct student2{3string sName;4private bool bSex;5public int iNumber;6}78static void Main(string[] args)9{10student stu= new student();11stu.sName = "张三";12stu.bSex = true;13stu.iNumber = 1;14Console.WriteLine("{0}的性别是{1},学号是{2}", stu.sName, stu.bSex, stu.iNumber);15}以上程序不能正常运行,需要在第________行前面添加_______________,需要将第________行的______________换成____________。

已知一个结构体声明如下public struct student{public string sName;public bool bSex;public int iNumber;}用这个类型定义一个数组,存放一个班级(36名学生)的信息,若数组的名字为arrStructStudent,将下面的定义语句补充完整:student _____ arrStructStudent = ________ _______________ ________ ;

答案查题题库