摘要: 【实验结论】 Part1: 结构体类型及编程应用 • 程序源码ex1_2.cpp 1 #include <stdio.h> 2 3 const int N=5; 4 5 // 定义结构体类型struct student,并定义STU为其别名 6 typedef struct student { 7 阅读全文