问题 B: C语言11.2

问题 B: C语言11.2_第1张图片

#include

struct student{
	int num;
	char name[20];
	char sex;
	int age;
}; 

int main(){
	student stu[30];
	student *p;
	p=stu;
	int n;//个数 
	scanf("%d",&n); 
	for(int i=0;i

你可能感兴趣的:(问题 B: C语言11.2)