Leo Linuxhnrainll.blog.chinaunix.net
hnrainll
全部博文(354)
2010年(300)
2009年(54)
大鬼不动
叶绍琛
路沐堇
HoariNes
快乐的猪
6551130
zjt_pond
K__奕__
cynthia
格伯纳
Bsolar
葫芦娃的
分类: C/C++
2010-06-29 14:02:07
#include <stdio.h> #include <stdlib.h> struct student { char number[6]; char name[6]; int score[3]; } stu[2]; void output(struct student stu[2]); int main(int argc, char *argv[]) { int i, j; for(i = 0; i < 2; i++) { printf("请输入学生%d的成绩:\n", i + 1); printf("学号:"); scanf("%s",stu[i].number); printf("姓名:"); scanf("%s",stu[i].name); for(j = 0; j < 3; j++) { printf("成绩 %d. ",j + 1); scanf("%d", &stu[i].score[j]); } printf("\n"); } output(stu); system("pause"); return 0; } void output(struct student stu[2]) { int i, j; printf("学号 姓名 成绩1 成绩2 成绩3\n"); for(i = 0; i < 2; i++) { printf("%-6s%-6s", stu[i].number, stu[i].name) ; for(j = 0; j < 3; j++) printf("%-8d",stu[i].score[j]); printf("\n"); } }
上一篇:C语言实例45:结构体变量
下一篇:C语言实例47:结构体指针变量
登录 注册