问题详情

编一个程序,定义结构类型(有学号、姓名、性别和程序设计成绩四个字段),声明该结构类型变量,用赋值语句对该变量赋值以后再输出。


时间:2022-01-01 07:44 关键词: C#程序设计 计算机科学技术

答案解析

<p> structstudent<br> {<br> publicintno;<br> publicstringname;<br> publicstringsex;<br> publicdoublescore;<br> }<br> classProgram<br> {<br> staticvoidMain(string[]args)<br> {<br> studentstu;<br> stu.no=10003;<br> stu.name=&quot;小小&quot;;<br> stu.sex=&quot;女&quot;;<br> stu.score=89.5;<br> Console.WriteLine(&quot;学生的学号是{0},名字叫{1},性别是{2},程序设计的成绩是{3}&quot;,stu.no,stu.name,stu.sex,stu.score);</p>