#include <stdio.h>
#include <stdlib.h>
struct xiaoshu
{
int head,tail;
char point;
};
void add(struct xiaoshu a,struct xiaoshu b)
{
printf("%d.%d",a.head+b.head,a.tail+b.tail);
}
int main()
{
struct xiaoshu a,b;
void add(struct xiaoshu,struct xiaoshu);
scanf("%d%c%d",&a.head,&a.point,&a.tail);
scanf("%d%c%d",&b.head,&b.point,&b.tail);
add(a,b);
return 0;
}
Problem B: 小数计算——结构体
最新推荐文章于 2022-04-09 18:48:11 发布