zoukankan      html  css  js  c++  java
  • 水仙花数,百鸡百钱,百马百担

    public static void main(String[] args) {
            
            //水仙花数
            
    //        int a,b,c,d;
    //        for(a=1;a<=9;a++)
    //        {
    //            for(b=0;b<=9;b++)
    //            {
    //                for(c=0;c<=9;c++)
    //                {
    //                    d=a*100+b*10+c;
    //                    if(a*a*a+b*b*b+c*c*c==d)
    //                    {
    //                        System.out.print("a="+a+"	");
    //                        System.out.print("b="+b+"	");
    //                        System.out.print("c="+c+"	");
    //                        System.out.println(d);
    //                    }
    //                }
    //            }
    //            
    //        }
    //        
    //        //百鸡百钱
    //        5文钱可以买一只公鸡,3文钱可以买一只母鸡,
    //        1文钱可以买3只雏鸡。现在用100文钱买100只鸡,
    //        
    //        那么各有公鸡、母鸡、雏鸡多少只?
    //       

          //第一种,double g

          //第二种,乘以3,除去分母
          //第三种,g+=3
          //第四种,&&g%3==0

     
            int e,f,g,h = 1;
            for(e=0;e<=20;e++)
            {
                for(f=0;f<=33;f++)
                {
                    for(g=0;g<=300;g+=3)
                    {
                        if(e*5+f*3+g/3==100&&e+f+g==100)
                        {
                            
                            h++;
                            System.out.print("小鸡="+g+"只	");
                            System.out.print("母鸡="+f+"只	");
                            System.out.println("公鸡="+e+"只	");
                        }    
                    }    
                }    
            }    
            
            
            //百马百担
            
    //        有一百匹马,驮一百担货,
    //        大马驮3担,中马驮2担,两只小马驮1担,
    //        问有大,中,小马各几匹?
    //        
    //        //k不能是奇数
    //        int i, j,k;
    //        for(i=0;i<=33;i++)
    //        {
    //            for(j=0;j<=50;j++)
    //            {
    //                for(k=0;k<=200;k++)
    //                {
    //                    if(i+j+k==100&&3*i+2*j+0.5*k==100)
    //                    {
    //                        
    //                        System.out.print(i+"	");
    //                        System.out.print(j+"	");
    //                        System.out.println(k);
    //                    }
    //                }
    //            }
    //        }
            
            
    
        }
  • 相关阅读:
    hdu 4864(2) 线段树
    hdu 4864
    Codeforces Round #256 (Div. 2)
    BestCoder Round #1 1001 && 1002 hdu 4857 4858
    [Groovy]Parse properties file in Groovy
    [Shell]Shell学习笔记之for
    [转]Groovy Goodness
    SoapUI Properties的使用
    [转]Groovy One Liners to Impress Your Friends
    How can I use wget in Windows
  • 原文地址:https://www.cnblogs.com/1ming/p/5219192.html
Copyright © 2011-2022 走看看