程序设计题6

题目

输入学生的姓名和成绩,然后输出。

程序

#include <stdio.h>
struct stu{
    char name[20];
    int score;
}stu,*p;
int main()
{
    p=&stu;
    printf("输入姓名:");
    gets(stu.name);
    printf("输入成绩:");
    scanf("%d",&stu.score);
    printf("输出:%s的成绩为:%d\n",p->name,p->score);
    return 0;
}
无标签
评论区
头像