Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. package com.javarush.test.level03.lesson06.task02;
  2.  
  3. /* Таблица умножения
  4. Выведи на экран таблицу умножения 10 на 10 в следующем виде:
  5. 1 2 3 …
  6. 2 4 6 …
  7. 3 6 9 …
  8. */
  9.  
  10. public class Solution
  11. {
  12. public static void main(String[] args)
  13. {
  14. //напишите тут ваш код
  15.  
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement