What is the value of x after each of the following statements is performed?
a) x = Math.Abs( 7.5 );
b) x = Math.Floor( 7.5 );
c) x = Math.Abs( 0.0 );
d) x = Math.Ceiling( 0.0 );
e) x = Math.Abs( -6.4 );
f) x = Math.Ceiling( -6.4 );
g) x = Math.Ceiling( -Math.Abs( -8 + Math.Floor( -5.5 ) ) );
Loading

VulpesPosted Dec 10, 2012, 6:13 PM
b) 7
c) 0
d) 0
e) 6.4
f) -6
g) -14