隨筆 - 78  文章 - 25  trackbacks - 0
          <2009年11月>
          25262728293031
          1234567
          891011121314
          15161718192021
          22232425262728
          293012345

          常用鏈接

          留言簿

          隨筆分類(75)

          隨筆檔案(78)

          相冊

          實用Links

          我的Links

          搜索

          •  

          積分與排名

          • 積分 - 114345
          • 排名 - 515

          最新評論

          閱讀排行榜

          評論排行榜

          public class GcdAndLcm{
              
          public static void main(String[] args){    
                  
          int[] result=gAndL(56,48);
                  System.out.println(
          "最大公約數為:"+result[0]+"  最小公倍數為:"+result[1]);
              }

              
          public static int[] gAndL(int x,int y){
                  
          int[] gl=new int[2];
                  
          int m,n,t;
                  m
          =x;n=y;
                  
          if(x<y){
                      n
          =x;
                      m
          =y;
                  }

                  
          while(m%n!=0){
                      t
          =n;
                      n
          =m%n;
                      m
          =t;
                  }
                  
                  gl[
          0]=n;
                  gl[
          1]=x*y/n;
                  
          return gl;
              }

          }
          結果:
          最大公約數:8 最小公倍數:336
          posted on 2009-11-23 23:10 期待明天 閱讀(345) 評論(0)  編輯  收藏 所屬分類: Java
          主站蜘蛛池模板: 荃湾区| 裕民县| 张家口市| 竹溪县| 竹山县| 汝阳县| 左云县| 松滋市| 达拉特旗| 达孜县| 鲜城| 长丰县| 濮阳县| 肃宁县| 南宫市| 商河县| 福清市| 南城县| 隆回县| 株洲市| 广德县| 宣城市| 黄骅市| 米脂县| 神农架林区| 鄂尔多斯市| 镇江市| 西盟| 丰顺县| 神池县| 富源县| 莱西市| 彰化市| 衡阳市| 准格尔旗| 甘洛县| 密云县| 临邑县| 平武县| 南宫市| 溧水县|