divide n with m and store reminder in x
Answers
Answered by
2
public class Rem
{
public static void main(int m, int n)
{
int x= n%m
System.out.println(x);
}
}
Similar questions