xxxxxxxxxx
[System.Math]::Ceiling(10.1) # adjusts the value to 11
[System.Math]::Ceiling(10.8) # adjusts the value to 11
[System.Math]::Floor(10.1) # adjusts the value to 10
[System.Math]::Floor(10.8) # adjusts the value to 10