Assuming total and price have been defined and initialized, which is the correct printf statement to yield the following
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Assuming total and price have been defined and initialized, which is the correct printf statement to yield the following
statement to yield the following output: Total: Price: 54 33.25 System.out.printf ("Total: %d%nPrice: %10.2f%n", total, price); System.out.printf("Total: %10s%nPrice: %10.1f%n", total, price); System.out.printf ("Total: %10d%nPrice: %10.2f%n", total, price); Osystem.out.printf ("Total: %10f%nPrice: %10.2d%n", total, price);
Assuming total and price have been defined and initialized, which is the correct printf