Topic: 求最大公约数和最小公倍数。。。为什么出错了 |
Print this page |
1.求最大公约数和最小公倍数。。。为什么出错了 | Copy to clipboard |
Posted by: 黑珍珠 Posted on: 2006-06-06 20:11
怎么出错了。为什么啊 有人能帮忙看看嘛 { use [code ] tag and check "Disable Smileys" -- why |
2.Re:求最大公约数和最小公倍数。。。为什么出错了 [Re: 黑珍珠] | Copy to clipboard |
Posted by: why Posted on: 2006-06-06 21:18 I only corrected the syntax errors. Please be more careful when typing.
|
3.Re:求最大公约数和最小公倍数。。。为什么出错了 [Re: 黑珍珠] | Copy to clipboard |
Posted by: Skybus Posted on: 2006-06-06 21:47 下面这个程序不知能不能帮你,可以对照一下 import java.io.*; |
4.Re:求最大公约数和最小公倍数。。。为什么出错了 [Re: 黑珍珠] | Copy to clipboard |
Posted by: 黑珍珠 Posted on: 2006-06-06 22:26 think you谢谢 太粗心了 大小写都搞错了 |
5.Re:求最大公约数和最小公倍数。。。为什么出错了 [Re: 黑珍珠] | Copy to clipboard |
Posted by: cainiao025 Posted on: 2006-06-09 01:15 [color=black] 太复杂了。 class Num { public static void main(String args[]) { int m=Integer.parseInt(args[0]); int n=Integer.parseInt(args[1]); int total, r; total=m*n; do { if(m<n) { int t=m; m=n; n=t; } r=m%n; m=n; n=r; }while(r!=0): System.out.println("最大公因数是:"+m); System.out.println("最小公倍数是:"+total/m); } } [/color] |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |