Multiplying variables and doubles in swift

前端 未结 2 1788
暖寄归人
暖寄归人 2020-12-16 13:52

I\'m a designer looking into learning Swift and I\'m a beginner.

I have no experience whatsoever.

I\'m trying to create a tip calculator using basic code in

2条回答
  •  暖寄归人
    2020-12-16 14:34

    You just have to cast your int variable to Double as below:

        var billBeforeTax = 100
        var taxPercentage = 0.12
        var tax = Double(billBeforeTax) * taxPercentage
    

提交回复
热议问题