String personName is read from input. Output "Alex", followed by personName with a width of 7. End with a newline. Ex: If the input is Thomas, then the output is: Alex Thomas 1 import java.util.Scanner; 2 3 public class Output Formatter { 4 5 6 7 8 9 10 11 personName= scnr.next(); System.out.printf("Alex %s%n", personName); 12 13 14} public static void main (String[] args) { Scanner scnr = new Scanner (System.in); String personName; Check } 1 Next level 2 3 For input Thomas, the number of characters is 6. The width of 7 is applied to the string, padding the string with 1 space, resu in "Thomas". "Alex " is output, followed by Thomas". The output ends with a newline. Not all tests passed. X 1: Compare output Output is nearly correct, but whitespace differs. See highlights below. Special character legend

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter9: Records (struct)
Section: Chapter Questions
Problem 2PE
icon
Related questions
Question

just need help fixing line 10 of code. spacing error

JAVA

String personName is read from input. Output "Alex ", followed by personName with a width of 7. End with a newline.
Ex: If the input is Thomas, then the output is:
Alex Thomas
1 import java.util.Scanner;
2
3 public class Output Formatter {
4
5
6
7
8
public static void main(String[] args) {
Scanner scnr = new Scanner (System.in);
String personName;
personName = scnr.next();
9
10 System.out.printf("Alex %s %n", personName);
11
12
13
14}
Check
}
1
Next level
2
X 1: Compare output
For input Thomas, the number of characters is 6. The width of 7 is applied to the string, padding the string with 1 space, resulting
in "Thomas". "Alex " is output, followed by "Thomas". The output ends with a newline.
Not all tests passed.
3
Output is nearly correct, but whitespace differs. See highlights below. Special character legend
Transcribed Image Text:String personName is read from input. Output "Alex ", followed by personName with a width of 7. End with a newline. Ex: If the input is Thomas, then the output is: Alex Thomas 1 import java.util.Scanner; 2 3 public class Output Formatter { 4 5 6 7 8 public static void main(String[] args) { Scanner scnr = new Scanner (System.in); String personName; personName = scnr.next(); 9 10 System.out.printf("Alex %s %n", personName); 11 12 13 14} Check } 1 Next level 2 X 1: Compare output For input Thomas, the number of characters is 6. The width of 7 is applied to the string, padding the string with 1 space, resulting in "Thomas". "Alex " is output, followed by "Thomas". The output ends with a newline. Not all tests passed. 3 Output is nearly correct, but whitespace differs. See highlights below. Special character legend
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
Methods of StringBuilder class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning