Write a program to initialize the two variables by 90 and 6803 and print their product.
Answers
Answered by
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
Math,
4 months ago
India Languages,
4 months ago
Computer Science,
10 months ago
Math,
10 months ago
Computer Science,
1 year ago