Guest User

1

a guest
Feb 19th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. import java.io.*;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) throws Exception {
  5.         //напишите тут ваш код
  6. int num = 1;
  7. String text = "SSSSSSSSSS";
  8.  
  9. while (num <=10) {
  10.     System.out.println(text);
  11.     num++;
  12. }
  13.     }
  14. }
Add Comment
Please, Sign In to add comment