About Question enthuware.ocajp.i.v8.2.2017 :
Posted: Sun Jan 14, 2018 4:20 pm
Regarding this question,
the order of code is to print char, float, then boolean,
but why is the answer start with float then empty space then boolean?
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);