common.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:0k
源码类别:

数学计算

开发平台:

Visual C++

  1. # include <stdio.h>
  2. void main()
  3. {
  4. int x, y, num1, num2, temp;
  5. printf("请输入两个正整数:n");
  6. scanf("%d %d", &num1, &num2);
  7. if(num1 < num2)
  8. {
  9. temp = num1;
  10. num1 = num2;
  11. num2 = temp;
  12. }
  13. x = num1;
  14. y = num2;
  15. while(y != 0)
  16. {
  17. temp = x%y;
  18. x = y;
  19. y = temp;
  20. }
  21. printf("它们的最大公约数为:%dn", x);
  22. printf("它们的最小公倍数为:%dn", num1*num2/x);
  23. }