using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
int m=245;
int n=60;
int s;
while (n!=0)
{
s=m%n;
m=n;
n=s;
}
Console .WriteLine ("最大公约数:{0}",m);
Console .Read();
}
}
}
[ 本帖最后由 bleach46 于 2008-5-10 16:34 编辑 ]