Guest User

Untitled

a guest
Oct 17th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class multiplystring
  2. {
  3. public static void main(String args[])
  4. {
  5. String x = "Hej ";
  6. for(int i = 1; i<10; i++)
  7. {
  8. System.out.print( x );
  9. }
  10. }
  11. }
Add Comment
Please, Sign In to add comment