蓝桥杯 历届试题 核桃的数量

求最小公倍数,先求最大公约数(辗转相除法) 

#include 
#include  
using namespace std;

int gcd(int a,int b)
{
	return (a%b==0)?b:gcd(b,a%b); 
}

int lcm(int a,int b) 
{
	if (a>a>>b>>c)
	{
		ab=lcm(a,b); 
		abc=lcm(ab,c);  
		cout<


你可能感兴趣的:(蓝桥杯)