Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. Scanner scan = new Scanner(System.in);
  6. System.out.println("Podaj zdanie: ");
  7. String sentence = scan.nextLine();
  8.  
  9. if (sentence == null) {
  10. System.out.println("Wpisz zdanie jeszcze raz.");
  11. String newSentence = scan.nextLine();
  12. System.out.println(newSentence);
  13. } else {
  14. System.out.println(sentence);
  15. }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement