Advertisement
veronikaaa86

01. Read Text - v.02

Jul 30th, 2022
1,194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class LiveExample {
  4.     public static void main (String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.  
  7.         String word = scanner.nextLine();
  8.         while (!word.equals("Stop")) {
  9.  
  10.             System.out.println(word);
  11.  
  12.             word = scanner.nextLine();
  13.         }
  14.     }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement