Java教程

英语题目翻译

本文主要是介绍英语题目翻译,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

题目地址:

https://acs.jxnu.edu.cn/problem/NOIOPJENGLISH13

Same Remainder

同样的余数

描述:

Given A and B. Find the smallest X that X is greater than 1 and A modulo X equals to B modulo X.

给出A和B。找到最小的X,X是大于1且A模X等于B模X。

输入:

Two positive integers A and B (A,B <= 10000).

两个正整数A和B。(A,B<= 10000).

输出:

One integer X.

一个整数。

样例输入:

17 26

样例输出:

3
这篇关于英语题目翻译的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!