(c) What is the value of
a%b if a = 37.5 and
b = 3.5
Answers
Answered by
1
Answer:
answer = 2.5
Explanation:
here % is modulus . It means that you will get the remainder of the following expression ,
refer this java codes and execute to be assured of the answer );
class jkl
{
public static void main()
{
double a=37.5 ;double b=3.5;
double d=a%b;
System.out.println(d);
}
}
Similar questions
Social Sciences,
6 months ago
Math,
6 months ago
Science,
1 year ago
Math,
1 year ago
Math,
1 year ago
Political Science,
1 year ago