码迷,mamicode.com
首页 > 其他好文 > 详细

杭电1108--最小公倍数

时间:2015-07-08 22:14:36      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

最小公倍数

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 39946    Accepted Submission(s): 22340


Problem Description
给定两个正整数,计算这两个数的最小公倍数。
 

 

Input
输入包含多组测试数据,每组只有一行,包括两个不大于1000的正整数.
 

 

Output
对于每个测试用例,给出这两个数的最小公倍数,每个实例输出一行。
 

 

Sample Input
10 14

 

 

 

Sample Output
70

 

 

 

Source
 

 

Recommend
Eddy   |   We have carefully selected several similar problems for you:  1061 1005 1071 1019 1425 
 
 1 #include <stdio.h>
 2 
 3 int gcd (int a, int b)
 4 {
 5     int i, t, temp ;
 6     for(i=1; i<=a; i++)
 7     {
 8         if(a%i == 0 && b%i == 0)
 9         temp = i;    
10     } 
11     return a*b/temp ;
12 }
13 
14 int main()
15 {
16     int a, b ;
17     while(~scanf("%d %d",&a, &b))
18     {
19         int temp = gcd(a, b) ;
20         printf("%d\n", temp) ;  
21     } 
22     return 0 ;
23 }

 

杭电1108--最小公倍数

标签:

原文地址:http://www.cnblogs.com/fengshun/p/4631399.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!