C-小数计算(结构体)

Description

小数可以看成是一个点和两个数组成的,因此可以定义成一个小数的结构体,现在请用结构体的知识来计算两个小数相加。

注意:不考虑进位,输入的值都是小数,小数位只有一位。

Input

输入两个小数

Output

输出两个小数的和

Sample Input

1.2
3.4

Sample Output

4.6

参考答案

#include 
struct xiaoshu
{
    int head;//整数位
    char point;//小数点
    int tail;//小数位
}a,b;
void add(struct xiaoshu a,struct xiaoshu b)
{
    int head;
    int tail;
    printf("%d%c%d",a.head+b.head,a.point,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;

}

你可能感兴趣的:(C-小数计算(结构体))