标签:logs out space cout namespace str turn log 水题
水题
#include <iostream> using namespace std; int fun(int x,int y) { int i; for(i=(x<y?x:y);!(x%i==0&&y%i==0);i--); return x/i*y; } int main() { int x,y; while(cin>>x>>y) { cout<<fun(x,y); } }
标签:logs out space cout namespace str turn log 水题
原文地址:http://www.cnblogs.com/x724578807/p/6537406.html