Computer Science, asked by srishtidwivedi977, 8 months ago


Write a program to print the product of 25.5 and 8.6. Also print the division of 85 by 3.​

Answers

Answered by adityayadav17052005
0

Answer:

don't know this question

Answered by spike69
1

Answer:

Answer: class evaluate

{

Void calc()

{

double a,q;

a = 25.5*8.6;

System.out.println("the product is "+a);

q=85/3;

System.out.println("the quotient is "+q);

}

}

Explanation: just using the * and / operators

Simple

brainliest please :)

Similar questions