Advertisement
julianlevinton

משולש תווים

Oct 19th, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. package tav;
  2. import java.util.*;
  3. public class tav
  4. {
  5.     static Scanner reader = new Scanner(System.in);
  6.     public static void main(String[] args)
  7.     {
  8.         char tav;
  9.         System.out.println("הכנס תו כלשהו:");
  10.         tav = reader.next().charAt(0);
  11.         System.out.println(tav);
  12.         System.out.print(tav);
  13.         System.out.println(tav);
  14.         System.out.print(tav);
  15.         System.out.print(tav);
  16.         System.out.println(tav);
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement