Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Przyklad3 {
- public static void main(String[] args) {
- Scanner scan = new Scanner(System.in);
- System.out.println("Podaj swój ulubiony cytat");
- //np. Kto podróżuje, ten dwa razy żyje.
- String cytat = scan.next();
- System.out.println("Twój ulubiony cytat: " + cytat);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement