最小公倍数
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 }
时间: 2024-10-12 13:45:29