【编程练习10.13】建立一个成绩单,成绩单上有课程名和成绩。成绩单的评分方式有两种,百分制和五级分制,输入各科成绩,然后再输出。

算法思路:建立关于课程的结构体,建立关于成绩的共同体。

算法代码:

#include<stdio.h>
#include<string.h>

union method{
	int hundred;
	char five[10];
};

struct course
{
	char name[30];
	char mode;
	union method grade;
};

int main()
{
	struct course report[4];
	int i;
	strcpy(report[0].name,"C Language Programing");
	strcpy(report[1].name,"College Chinese");
	strcpy(report[2].name,"Advanced Mathematics");
	strcpy(report[3].name,"Data Structure");
	for(i=0;i<4;i++)
	{
		printf("Input the mode(h/f) of course \"%s\":",report[i].name);
		scanf("%c",&report[i].mode);
		printf("Examination Result:");
		if(report[i].mode=='h')
		    scanf("%d",&report[i].grade.hundred);
		else
		    scanf("%s",report[i].grade.five);
		getchar();//因为连续输入,下一个的开头不能时是回车符,因此添加一条语句,读入并丢弃“回车符”
	}
	puts("\nname                          mode            grade");
	for(i=0;i<4;i++)
	{
		printf("%-30s%-16c%",report[i].name,report[i].mode);
		if(report[i].mode=='h')
		    printf("%d\n",report[i].grade.hundred);
		else
		    printf("%s\n",report[i].grade.five);
	}
	return 0;
}

运行结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值