Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature currently requires accessing the site using the built-in Safari browser.
public static void main(String[] args) {
for (int i = 1; i < 11; i++) {
for (int j = 1; j < 11; j++) {
System.out.print(i * j + " ");
}
System.out.println("");
}
}
for (int i = 1; i < 10; ++i) {
for (int j = 1; j < 10; ++j) {
System.out.printf("%d * %d == %d\t\t", j, i, i * j);
}
System.out.println();
}
1 * 1 == 12 * 1 == 23 * 1 == 34 * 1 == 45 * 1 == 56 * 1 == 67 * 1 == 78 * 1 == 89 * 1 == 9
1 * 1 == 1 2 * 1 == 2 3 * 1 == 3 4 * 1 == 4 5 * 1 == 5 6 * 1 == 6 7 * 1 == 7 8 * 1 == 8 9 * 1 == 9