0 thích 0 k thích
493 đã xem

Write a program that asks the user to enter two integers, then calculates and displays their greatest common divisor (GCD) and their Least common multiple (LCM).

寫一個輸入兩個整數 輸出它們的最大公因數程式

Hint: Use Euclidean Algorithm

使用歐幾里得演算法

LCM:

In arithmetic and number theory, the least common multiplelowest common multiple, or smallest common multiple of two integers a and b, usually denoted by LCM(ab), is the smallest positive integer that is divisible by both a and b.

What is the LCM of 4 and 6?

Multiples of 4 are:

4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68, 72, 76, ...

and the multiples of 6 are:

6, 12, 18, 24, 30, 36, 42, 48, 54, 60, 66, 72, ...

Common multiples of 4 and 6 are simply the numbers that are in both lists:

12, 24, 36, 48, 60, 72, ....

So, from this list of the first few common multiples of the numbers 4 and 6, their least common multiple is 12.

 

Example input: 

12 28

Example output (first number is GCD, second number is LCM):

4 84

 

[Exam] đã hỏi trong Midterm bởi (12.1k điểm)
ID: 36752 - Xem được từ: 2017-11-15 14:10 - Hiệu lực đến: Không giới hạn
| 493 đã xem

10 Trả lời

0 thích 0 k thích
Hidden content!
#include <stdio.h>

int main(){
* *** * * * * ** ** *** * a,b;
* ** * * * * * * * remain=0;
**** ** * * * ** * * ** gcd;
* **** * *** * * * * * i,j=1;
* *** ** * * t=0;

** ***** ***** *** ** * * ** * *** *** * **
* * **
* * *** ** *** * gcd
* ** * ** * * * *
***** **** *** ** * * *** *

** **** * *** * * * * of a and b from range a to b
* * ** * ** ** ** ** * * = a; i <= b; i++){
* ** * * *** * * ****** * ** * *** ** ** ** * ** ", i);

* ** * ** *** * ****

** ***** *** * * * * *** * 0;
}
trả lời bởi (-74 điểm)
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
Case 4: Wrong output
0 thích 0 k thích
Hidden content!
#include * ** ** * *
int main()
{
* *** ** ***** *** * * ** * n1, n2, i, gcd;

* * * * *** ** *** * * ** ** ** ** &n1, &n2);

**** * **** ****** * * * i <= n1 ***** * * i <= n2; ++i)
*** * **** * *** **** ** * *
** * ** *** ** ** ** * **** * * * ** * * * **** ** * ** * * * n2%i==0)
* * *** * ** * **** * * ** * * * *** * * ** = i;
* ***** *** * *
*** ***** ** * ** * *********** *** * gcd);
*** * ******* * * * * 0;
}
45/100 trả lời bởi (-233 điểm)
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
Case 4: Wrong output
0 thích 0 k thích
Hidden content!
#include<stdio.h>



int main(){
* * * ********* ** *** * a,b,c,d,e,m,i;
* *** * * ** ** * ** ** ** * ***
** ** ** * * * * ** **
* * * * ***** * **** *

**** *** ***** * **** ** *** ****
* * *** * ***** ***** ***** ** * *** ** * *
* ** ** * * * *** *** * * *** * * **** ** **
* * ** * ** * ** * * ** ** * ** *** * **
    }
    if (a%b==0){
* ** **** ** * ** * * **** * * ***** ** * ** * ** * *** *
    }


*** * * *** **** * ** * * ** *** ** *
** ***** * ** *** **** ** * *** * * *** ****
* * ***** ** ** * *** * ** *** ** * *** * * * * * ***** **** *** **** ** * *
* * * **** * ** *** * *** * ** ** ** **** * *** *** * * * ** * * * * *** * %d",i);
**** * *** ** *** * ** ** * * * * * *** ** ***** *** ** *** * * * * ** * *
** * * * * ** ** * * ** ** ***** * * ** * **** ** * *** **
* * * * ** *** * * * ** * ** * * * * **
    }


   return 0;
}
trả lời bởi (-32 điểm)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Wrong output
Case 4: Correct output
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Wrong output
Case 4: Correct output
0 thích 0 k thích
Hidden content!
* ** * * *
int main (){
int
** * * ** ** ** *
* * * ** * ** * * * * *
* * ** *****
** **
* **** ** * * ** *
else{
** *** ** * ** * ** *
}
}

return 0;
}
trả lời bởi (16 điểm)
0 0
Case 0: Wrong output
Case 1: Wrong output
Case 2: Wrong output
Case 3: Wrong output
Case 4: Wrong output
0 thích 0 k thích
Hidden content!
* ****** * *** * *** *
int main(void){
int * **
** * *** ** ** ** * * * **
*** * * * ** * * *
{
*** ** * ********* **** ** ** *** **** *** *
** ** *** ** ** *** **
}
lcm=n*n2/gcd;
*** ***** * *** * * *** *
return 0;

}
trả lời bởi (-167 điểm)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
Case 4: Correct output
0 thích 0 k thích
Hidden content!
#include <stdio.h>
#include <stdlib.h>

int main()
{
* * * ** **** num1;
* * * * * ** * ***** num2;
** **** * * ** * * ** * * remainder;
* *** ** *** ** ** *** numerator;
** ** *** * * ** * * denominator;
*** ** **** * ** gcd, lcm;


* * ***** *** * * ** * ** * ** ** * *** **** *

** ***** * *** * ** * * *
* ** * * ** ** * **** *** *
** * * * * * ** * * * *** *** * * *** * ** ** *
****** * * ** * ** ** ** ** ** * * * **** * * ** **
    }

******* * * ***
* ** *** ** ** ****** * * * *** * **
* ** * ** ** * * * ** ** ** **** * ** * * * *
* ** * * ** ******** * ***** * ** * * * * * * **** ****
    }

** **** * * ** * ** * **** *

* ** *** ** ** **** *** **** * != 0)
    {
* *** *** **** *** ** ** *** ** * * * **** * ****
** *** * * *** * *** * ** * *** * * * ** ** ******
* * **** * * ****** * * * * ** **** * * * * *** *** * **** * * *

    }

*** ** ****** ***
* * * ** *** * ** *** **** * ** * *

*** * ** ** ** ** * * **** * *** * ",gcd);
* * * * * * * ** * * * * ** * * *** * *

* ******* * * *** ** ** * 0;
}
trả lời bởi (-193 điểm)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
Case 4: Correct output
0 thích 0 k thích
Hidden content!
** * * * ** * ****
int main()
{
int a,b,i,n,gcd,lcm;
** * **** * ** ** ** ** * ****
*** ***** *** **
{
* * **** * ** ** *** ** **** *** * * **
*** * ***** *** * * ****** * **** * *
}
lcm=a*b/gcd;
* *** * ** ***** * * *
return 0;
}
trả lời bởi (-32 điểm)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
Case 4: Correct output
0 thích 0 k thích
Hidden content!
#include<stdio.h>
int gcd(int x,int y)
{
** * ** * ****** * * * * z;
******* * *** *** * *** * *
    {
*** *** * ***** * ** ** ** ** **** ****
* * ***** * * * ** ** * * *
* * * ** * ** * * * * **** ** *** * * * *****
*** **** ** ** ** *** **** * ** ****** * *** ** * ** ** * **
** ** ** * *** * * *** * * * *** ** * **** ** * **** * **
* *** *** * ** **** ** ** ** *
** *** ** * *** * *** *** * *** y;
    }
* ** ** * * *** * **
    {
* * * *** * *** *** **** * *** ** **** * * *
**** * *** * ** ** ** * ***** * ** * ** * ***
***** * *** * * *** * *** * * * ** ***** * * ** **** * ** * ** ***** * *
* * ** * * * * *** ** * ** ***** ** * *** ** * *** **** ** ** *
** *** * ** * *** * * * ** * ** ** * *** *** ** ** ** * ***
*** * * * *** *** ** * ****** * ** ****** *
**** * ****** ** * ** ** * ** *** ***** * * * x;
    }
}
int main()
{
    int a,b,lcm;
* *** * ** *** ** * ** * %d",&a,&b);
** ** * *** ** * ** * * *
** * * ***** * *** * *
* *** * ** * * ** %d",gcd(a,b),lcm);
}
trả lời bởi (-255 điểm)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
Case 4: Correct output
0 thích 0 k thích
Hidden content!
#include <stdio.h>
#include ** *** ** *****

int main()
{
* ** * * * ** ** **** a,b,i,j;
** * ****** * ** ** * * * * ** * ** **** * ** **

* * * * * ** i>=1; i--)
* ** *** * * *** *** *
* *** * ** *********** ******* * * * *** * * ***** * (a%i==0 && b%i==0)
*** ** * **** ** **** * ***** *** **

** ** ** * * ****** *
* *** ** * **** * ** * ***** * * ***

* * * * * *** * *** * * * j<=a*b; j++)
** ** ** *** **
* ** **** * * * ** * **** ** ** * * ** ****** (j%a==0 && j%b==0)
*** * ***** ** *** *** **** * *** * *** * ** * *** *** *
*** **** *** * *
**** * ******* * ** ** *** * %d",j);

* * * ** ** ** *** ** * * 0;
}
trả lời bởi (-127 điểm)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
Case 4: Correct output
0 thích 0 k thích
Hidden content!
#include<stdio.h>
int main(void)
{
* ** * ** * ** * ** * a,b;
* * *** * * * ** * ** ****** * * * * %d",&a,&b);
** * ******** ** *** ** ** * i,gcd,lcm;
* **** **** * * ** ** * * ** *
**** ** * * * ***** * *
*** ** * ** * ** * ** ***** * ** * **** * && b%i==0)
* * * **** * ** * * ** * ***
** *** * * ** * * * * ***** **** *** * * * * * * * * * * * *****
* ***** ** ***** * *** * * *** ** ** * * *******
*** ** **** * * * **
*** * ** * * ** * ****** ***
* **** ******* * ** * **** * %d",gcd,lcm);
}
trả lời bởi (-249 điểm)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
Case 4: Correct output
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.70.230.150
©2016-2024

Những câu hỏi liên quan

1 thích 1 không thích
36 trả lời
[Exam] đã hỏi ngày 15 tháng 11 năm 2017 trong Midterm bởi thopd (12.1k điểm)
ID: 32707 - Xem được từ: 2017-11-15 14:10 - Hiệu lực đến: Không giới hạn
| 1k đã xem
0 thích 0 k thích
69 trả lời
[Exercise] Coding (C) - đã hỏi ngày 26 tháng 10 năm 2017 trong Chapter 6: Loops bởi semicolon (5.2k điểm)
ID: 28913 - Xem được từ: 2017-10-26 18:00 - Hiệu lực đến: Không giới hạn
| 1.9k đã xem
0 thích 0 k thích
21 trả lời
[Exam] đã hỏi ngày 9 tháng 12 năm 2017 trong Midterm bởi thopd (12.1k điểm)
ID: 36754 - Xem được từ: 2017-11-15 14:10 - Hiệu lực đến: Không giới hạn
| 927 đã xem
0 thích 0 k thích
22 trả lời
[Exam] đã hỏi ngày 9 tháng 12 năm 2017 trong Midterm bởi thopd (12.1k điểm)
ID: 36753 - Xem được từ: 2017-11-15 14:10 - Hiệu lực đến: Không giới hạn
| 935 đã xem
12,783 câu hỏi
183,443 trả lời
172,219 bình luận
4,824 thành viên