软件名称: C/C++完美演绎源代码 《C/C++完美演绎》源代码
源代码在线查看: 9-12.txt
/* 范例:9-12 */
#include
#include
#include
struct Scoretype
{
char std_no[10]; /* 学号 */
char name[10]; /* 学生姓名 */
int chi_score; /* 语文成绩 */
int eng_score; /* 英文成绩 */
}students[50];
void main(void)
{
printf("输入姓名:");
scanf("%s",students[0].name);
printf("输入中文成绩:");
scanf("%d",&students[0].chi_score);
printf("%s 语文 %d 分\n", \
students[0].name,students[0].chi_score);
strcpy(students[1].name,"Peipei");
students[1].chi_score = 90;
printf("%s 语文 %d 分\n", \
students[1].name,students[1].chi_score);
getche();
}