Write code that inserts userItem into the output string stream itemsOSS until the user enters "Exit". Each item should be followed by a space. Sample output if user input is "red purple yellow Exit": red purple yellow --------------------- import java.util.Scanner; import java.io.PrintWriter; import java.io.StringWriter; public class StringStreamOutput {    public static void main (String [] args) {       Scanner scnr = new Scanner(System.in);       String userItem;       StringWriter itemCharStream = new StringWriter();       PrintWriter itemsOSS = new PrintWriter(itemCharStream);       System.out.println("Enter items (type Exit to quit):");       userItem = scnr.next();       while (!userItem.equals("Exit")) {          /* Your solution goes here  */          userItem = scnr.next();       }       userItem = itemCharStream.toString();       System.out.println(userItem);    } }

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Write code that inserts userItem into the output string stream itemsOSS until the user enters "Exit". Each item should be followed by a space. Sample output if user input is "red purple yellow Exit":

red purple yellow

---------------------

import java.util.Scanner;
import java.io.PrintWriter;
import java.io.StringWriter;

public class StringStreamOutput {
   public static void main (String [] args) {
      Scanner scnr = new Scanner(System.in);
      String userItem;

      StringWriter itemCharStream = new StringWriter();
      PrintWriter itemsOSS = new PrintWriter(itemCharStream);

      System.out.println("Enter items (type Exit to quit):");
      userItem = scnr.next();

      while (!userItem.equals("Exit")) {

         /* Your solution goes here  */

         userItem = scnr.next();
      }

      userItem = itemCharStream.toString();
      System.out.println(userItem);
   }
}

 

Write code that inserts userltem into the output string stream itemsOSS until the user enters "Exit". Each item should be followed
by a space. Sample output if user input is "red purple yellow Exit":
red purple yellow
374934.2421584.qx3zqy7
13
System.out.println("Enter items (type Exit to quit):");
1 test
14
userItem
scnr.next();
passed
15
16
while (!userItem.equals("Exit")) {
17
All tests
18
/* Your solution goes here */
passed
19
20
userItem
scnr.next();
21
}
22
23
userItem
itemCharStream.toString();
24
System.out.println(userItem);
25
26 }
Run
Need help?
Feedback?
How was this section?
יקםו
Provide fe
back
Transcribed Image Text:Write code that inserts userltem into the output string stream itemsOSS until the user enters "Exit". Each item should be followed by a space. Sample output if user input is "red purple yellow Exit": red purple yellow 374934.2421584.qx3zqy7 13 System.out.println("Enter items (type Exit to quit):"); 1 test 14 userItem scnr.next(); passed 15 16 while (!userItem.equals("Exit")) { 17 All tests 18 /* Your solution goes here */ passed 19 20 userItem scnr.next(); 21 } 22 23 userItem itemCharStream.toString(); 24 System.out.println(userItem); 25 26 } Run Need help? Feedback? How was this section? יקםו Provide fe back
CHALLENGE
12.2.3: Output using string stream.
АCTIVITY
Write code that inserts userltem into the output string stream itemsOSS until the user enters "Exit". Each item should be followed
by a space. Sample output if user input is "red purple yellow Exit":
red purple yellow
374934.2421584.qx3zqy7
1 import java.util.Scanner;
2 import java.io.PrintWriter;
3 import java.io.StringWriter;
1 test
passed
4
5 public class StringStreamOutput {
All tests
passed
public static void main (String [] args) {
Scanner scnr =
6.
7
new Scanner(System.in);
8
String userItem;
9
StringWriter itemCharStream
PrintWriter items0SS
10
new StringWriter();
= new PrintWriter(itemCharStream);
11
12
13
System.out.println("Enter items (type Exit to quit):");
14
userItem
scnr.next();
15
Run
Need help?
Feedback?
Transcribed Image Text:CHALLENGE 12.2.3: Output using string stream. АCTIVITY Write code that inserts userltem into the output string stream itemsOSS until the user enters "Exit". Each item should be followed by a space. Sample output if user input is "red purple yellow Exit": red purple yellow 374934.2421584.qx3zqy7 1 import java.util.Scanner; 2 import java.io.PrintWriter; 3 import java.io.StringWriter; 1 test passed 4 5 public class StringStreamOutput { All tests passed public static void main (String [] args) { Scanner scnr = 6. 7 new Scanner(System.in); 8 String userItem; 9 StringWriter itemCharStream PrintWriter items0SS 10 new StringWriter(); = new PrintWriter(itemCharStream); 11 12 13 System.out.println("Enter items (type Exit to quit):"); 14 userItem scnr.next(); 15 Run Need help? Feedback?
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY