Computer Science, asked by LOVELYSINGH89, 1 year ago

write a programming to input two different number and find the remainder without using modules oppraters


siddharthbhat1: Using which programming language?
LOVELYSINGH89: java

Answers

Answered by rashi61
4
class sum1
{
void main( int a , int b)
{
int r;
r=0;
r=a-(a\b)*b;
System.out.println("remainder is="+r);
}
}
Similar questions