输入(比较小的)两个整数,求他们的最小公倍数:用的代码如下:#include<stdio.h>main(){ int m,n,min,i,a,b; scanf("%d%d",&m,&n); if(m>n)a=m; else a=n; &...
阅读全文
2008
12-22