Lib.nbdp.net
首页
试卷列表
OJ题库
搜索
登录
主页
题库
详解
不是VIP会员,不能显示答案
题目解答
题目:
var x,y:longint;
begin
x:=2014; y:=924;
while (x<>0) and (y<>0) do
begin
if x>=y then x:=x-y else y:=y-x
end;
if x=0 then writeln(y) else writeln(x)
end.
输出:
2
考点:
分析:
解答:
评论:
老师: