Multiplication of Two numbers in java October 04, 2020 Get link Facebook X Pinterest Email Other Apps public class Mul{public static void main(String args[]){int a=10int b=20;int mul=a*b;System.out.println("Multiplication of two numbers ="+mul);}} Comments
Comments
Post a Comment