Write an algorithm and draw a flowchart to find product of any 2 numbers
Answers
Answered by
5
Answer:
input two numbers
take another variable c store both after multiplication
class mul
{
public static void main(String arg[])
{
int a,b,c ;
a=5;b=8;
c=a*b;
System.out.println("the multiplication is="+c);
}
}
Explanation:
Attachments:
Similar questions