Answers for "how to convert float to int"

4

java convert float to int

int a = (int)float1
Posted by: Guest on January-15-2021
13

convert float to int python

# convert float to int 
x=3.1415
y=int(x)
print(y) #outputs 3
Posted by: Guest on December-08-2020
0

how to make float to int in python

b = 125.0
c = 390.8

print(int(b))
print(int(c))
Posted by: Guest on July-24-2021
0

convertir un float en int en java

int bob = (int) 3.14;    \\ bob = 3
Posted by: Guest on November-18-2020

Code answers related to "how to convert float to int"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language