Floating-point Formatting

Report a typo
public static void main(String[] args){
    double num1 = 35;
    double num2 = 23.34;
    System.out.printf("%f %f", num1, num2);
}

What is the output of the above code?

Select one option from the list
___

Create a free account to access the full topic