Open In App

Getting the nearest integral value of x in Julia – trunc() Method

Last Updated : 21 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The trunc() is an inbuilt function in julia which is used to return the nearest integral value of the same type as the specified value x whose absolute value is less than or equal to x.

Syntax: trunc(x)

Parameters:

  • x: Specified value.

Returns: It returns the nearest integral value of the same type as the specified value x whose absolute value is less than or equal to x.

Example 1:




# Julia program to illustrate 
# the use of trunc() method
  
# Getting the nearest integral value 
# of the same type as the specified value 
# x whose absolute value is less
# than or equal to x
println(trunc(3))
println(trunc(0.5))
println(trunc(3.9))


Output:

3
0.0
3.0

Example 2:




# Julia program to illustrate 
# the use of trunc() method
  
# Getting the nearest integral value 
# of the same type as the specified value 
# x whose absolute value is less
# than or equal to x
println(trunc(0))
println(trunc(2))
println(trunc(2.1))
println(trunc(2.5))
println(trunc(2.9))


Output:

0
2
2.0
2.0
2.0

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads