关于WHILE语句
<!DocType HTML>
<html>
<head>
<title>
</title>
<script>
var u=42;
var v=21;
var temp=v;
while(v>0){
temp=u%v;
u=v;
v=temp;
}
alert("最大公约数是:"+u);
</script>
</head>
<body>
</body>
</html>
有没有大神能具体 讲解一下这题,怎么得出21的呢?
<!DocType HTML>
<html>
<head>
<title>
</title>
<script>
var u=42;
var v=21;
var temp=v;
while(v>0){
temp=u%v;
u=v;
v=temp;
}
alert("最大公约数是:"+u);
</script>
</head>
<body>
</body>
</html>
有没有大神能具体 讲解一下这题,怎么得出21的呢?
2016-06-19
举报