1. write the output for the following program for the class modulus {
public static void main(string args[])
{
double a=25.64;
int b=25;
a=a%10;
b=b%10;
system.out.println(a+ " , " +b)
}
}
Answers
Answered by
0
Answer:
0 , 5
this is the answer
take
Similar questions