|
Given the following program, which lines will print 11 exactly?
class MyClass {
public static void main(String[] args) {
double v = 10.5;
System.out.println(Math.ceil(v)); // (1)
System.out.println(Math.round(v)); // (2)
System.out.println(Math.floor(v)); // (3)
System.out.println((int) Math.ceil(v)); // (4)
System.out.println((int) Math.floor(v)); // (5)
}
}
Select the two correct answers.
The line labeled (1). The line labeled (2). The line labeled (3). The line labeled (4). The line labeled (5).
|