<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="小小";<br> stu.sex="女";<br> stu.score=89.5;<br> Console.WriteLine("学生的学号是{0},名字叫{1},性别是{2},程序设计的成绩是{3}",stu.no,stu.name,stu.sex,stu.score);</p>