Computer Science, asked by Zender2005, 10 months ago

Write a program to initialize the two variables by 90 and 6803 and print their product.

Answers

Answered by anjaypandey150175
1

*java

Explanation:

public class prog1

{

public static void main (String args[ ])

{

int a=90,b=6803,p=1;

p=a*b;

System.out println("Product of two numbers="+p);

}

}

Similar questions