Computer Science, asked by sandhyagopi2319, 8 months ago

Write an algorithm and draw a flowchart to find product of any 2 numbers

Answers

Answered by swayambhumishra8
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