Advertisement
myrdok123

01. Read Text

Apr 6th, 2024
681
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package WhileLoop;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class P01ReadText {
  6.  
  7.     public static void main(String[] args) {
  8.         Scanner scanner = new Scanner(System.in);
  9.  
  10.  
  11.  
  12.         String input = scanner.nextLine();
  13.  
  14.         while (!input.equals("Stop")){
  15.  
  16.             System.out.println(input);
  17.  
  18.             input = scanner.nextLine();
  19.         }
  20.  
  21.  
  22.     }
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement