求高手有偿写软件
求C或者C++程高手有偿写份软件,有兴趣的朋友可以加Q:30240209,详谈。
#include <stdio.h>
void main()
{
struct student
{
int id;
char name[20];
char x;
int age;
};
struct student sd;
sd.id=1021;
strcpy(sd.name,"刘德华");
sd.x='N';
sd.age=30;
printf("\n%d\t%s\t%c\t%d\n",sd.id,sd.name,sd.x,sd.age);
getch();
}