Computer Science, asked by prashansaprashansa8, 7 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 ayanachakraborty97
0

double a= 25.5

double b= 8.6

double m;

m= a*b;

double d;

d= 85/3;

print ( m );

print (d);

Similar questions