以下程序的输出是( ) struct Student { char name[30]; float Score[3]; }student={'stu',98.5,89.0,93.5}; void Display(struct Student su) { printf('Name:%s ',su.name); printf('Score:%.2f',su.Score[0]); int main () { Display(student); return 0; }

时间:2022-11-16 02:52:23

相似题目