write a programming to input two different number and find the remainder without using modules oppraters
siddharthbhat1:
Using which programming language?
Answers
Answered by
4
class sum1
{
void main( int a , int b)
{
int r;
r=0;
r=a-(a\b)*b;
System.out.println("remainder is="+r);
}
}
{
void main( int a , int b)
{
int r;
r=0;
r=a-(a\b)*b;
System.out.println("remainder is="+r);
}
}
Similar questions