Sololearn: Learn to Code
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1
I’ll give you a multiplication example using the multiply operator(*): int a = 6; int b = 10; int sum = a*b; System.out.println(sum); this will mutiply 6*10 and output the sum of 60 to the console
3rd Aug 2019, 7:58 PM
Jake
Jake - avatar