如何将两个变量合并为一个值

时间:2019-08-11 15:03:38

标签: c++

这个问题可能很困难,我不知道是否可能。我想加入两个变量,但其中一个作为小数。 这就是我的意思: x = 40,y = 55 xy = 40.55

它们是值为“ 40.55”的新变量。这可能吗?

我以以下代码为例:

float Insurance::age()
{
    int years=0, actualYear=2019;
    float yearPercentage=0, daysInMonths=30, months=0, days=0, age=0, totalDays=0;

    daysInMonths=daysInMonths*months;
    totalDays=daysInMonths+days;

    yearPercentage=100/360*totalDays;
    years=actualYear-getBirthDay(2);

    //I don't know how to join the "yearPercentage" with "years" just like the x and y above.
}

1 个答案:

答案 0 :(得分:0)

这只是小学数学:

如果 x = 40 y = 55 ,则 xy = x +(y / 100)= 40.55

这很容易用代码表达。实际上,我几乎已经做到了。 ?