write a java program to multiply three numbers n1 n2 and n3
Answers
Answered by
1
Answer:
Explanation:
n1=int(input())
n2=int(input())
n3=int(input())
p=n1*n2*n3
print(p)
hehe this is paithon
java is for noobs
Answered by
1
Answer:
A java program to multiply three numbers n1, n2 and n3
Explanation:
public class Main
{
public static void main(String[] args) {
int n1=4,n2=5,n3=6;
int product = n1*n2*n3;
System.out.println("The product of "+n1+", " + n2 + " and " + n3 + " equals " + product);
}
}
Similar questions