Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
630 views
in Technique[技术] by (71.8m points)

variables - Swift: Print decimal precision of division

I'm trying print the result of division for example:

let division = (4/6)
print(division) 

In this case the print out is 0.

How can I print the numeric value of the division without losing the numeric value. I mean without casting the output to string.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You are performing integer division. You need to perform floating point division.

In your code, division is an Int value. 4 / 6 is zero in integer division.

You need:

let division = 4.0/6.0
print(division)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...