You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
446 B
19 lines
446 B
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <conio.h>
|
|
#include <STDLIB.H>
|
|
#include <stdlib.h>
|
|
int N=0;
|
|
struct stu
|
|
{
|
|
long int xuehao; /*学号*/
|
|
char name[10]; /*姓名*/
|
|
char sex[4]; /*性别*/
|
|
int age; /*年龄*/
|
|
char birth[10]; /*出生年月*/
|
|
char address[10]; /*地址*/
|
|
char phone[15]; /*电话号码*/
|
|
char mail[20]; /*mail*/
|
|
}s[40];
|
|
|