Multiplication table

  • 6
  • Locked
Initialize the MULTIPLICATION_TABLE array as a new int[10][10], fill it with a multiplication table, and then display it on the console in the following form: 1 2 3 4 … 2 4 6 8 … 3 6 9 12 … 4 8 12 16 … … The numbers in each line are separated by a space.
You can't complete this task, because you're not signed in.
Comments (2)
  • Popular
  • New
  • Old
You must be signed in to leave a comment
Debra Brewer
Level 7 , United States of America, United States
4 March, 00:35
They initialize the array for you before the main with a public static int command. You need to finish initializing/setting up the array there. (Make it [10][10])
Vadim “迪姆哥”
Level 26 , Kazakhstan
12 October 2022, 18:10
Why my code isn't pass first check? I wrote multiplication table values into int[10][10] array...