the order of code is to print char, float, then boolean,
but why is the answer start with float then empty space then boolean?
Code: Select all
System.out.print(ch);
System.out.print(" ");
System.out.print(f);
System.out.print(" ");
System.out.print(bool);