Computer Science, asked by sujal9439, 11 months ago

wap to divide two numbers using function​

Answers

Answered by ashithamuthamma14
1

Answer:

Here I'm using bluej code[Java]

Explanation:

public class divide

{

void main()

{

int a,b,c;

a=10; b=2;

c=a/b;

System.out.println("after dividing a and b the value of c is :"+c);

}

}

Similar questions