write a program to accept three integers and find the product of the last digit of the numbers
PLZ ANSWER IN JAVA AND DON'T SPAM
Answers
Answered by
1
Answer:
class number
{
public void main (int q, int r, int s)
{
int p = 0;
p= q%10 * r%10 * s%10
System.out.println(“Product=“ + p);
}
}
I hope this helped you! :D
Similar questions