Computer Science, asked by bhumikadeep, 3 months ago

divide n with m and store reminder in x​

Answers

Answered by aryan997821
2

public class Rem

{

public static void main(int m, int n)

{

int x= n%m

System.out.println(x);

}

}

Similar questions