Math, asked by ashishganta105, 9 months ago

When 31513 and 34369 are divided by a 3 digit number, remainder are equal find the reminder ?​

Answers

Answered by kanirudh491
0

Answer:

no the remainder are not equal try in calculator

Answered by Anonymous
3

Answer:

When 31513 and 34369 are divided by a 3 digit number, remainder are equal find the number?

Save taxes & secure your family's future, with a term plan.

If You solve this

If number is x

then m+reminder=31513/x;

n+reminder=34369/x

If you substract the equation you will finde

n-m=2856/x

So x which is three digit number

x=2856/k where k is a positives integer

for least value of x three digit it 100 so least is 29

In coding you can do like in Java

for (int k = 29; k > 0; k--) {

int reminder = 2856 % k;

if (reminder == 0) {

int xNumber = 2856 / k;

if (xNumber > 1000)

break;

else {

System.out.println(xNumber);

}

}

}

And You will found the numbers are

102,119,136,168,204,238,357,408,476,714,952

Similar questions