9Google AdSense

386 Perpect Cubes

 Click to see the Problem
#include<stdio.h>

int main()
{
    long int a,b,c,d,A,B,C,D;

    for(a=6;a<=200;a++)
    {
        A=a*a*a;
        for(b=2;b<=a;b++)
        {
            B=b*b*b;
            for(c=b;c<=a;c++)
            {
                C=c*c*c;
                for(d=c;d<=a;d++)
                {
                    D=d*d*d;
                    if(A==B+C+D)
                    {
                        printf("Cube = ");
                             printf("%ld,",a);
                             printf(" Triple = ");
                             printf("(%ld,%ld,%ld)\n",b,c,d);


                    }

                }
            }
        }
    }
    return 0;
}

12372 Packing for Holiday


#include<stdio.h>


int main()
{

        int test,i,l,h,w;
        scanf("%d",&test);
        for(i=1;i<=test;i++)
        {
            scanf("%d%d%d",&l,&h,&w);
            if((l>=1&&l<=50)&&(h>=1&&h<=50)&&(w>=1&&w<=50))
            {
                if(l<=20&&h<=20&&w<=20)
                    printf("Case %d: good\n",i);
                else
                    printf("Case %d: bad\n",i);
            }

        }
        return 0;

}


11547 Automatic Answer

#include<stdio.h>

int main()
{

      long int x,m,d,a,m1,d1,s,num;
      long int ary[1000];
      long int rem,dev,i;
      int test,loop1;
     // freopen("f:\\input.txt","r",stdin);
      scanf("%d",&test);
      for(loop1=1;loop1<=test;loop1++)
      {
                    scanf("%ld",&x);
                    m=x*567;
                   d=m/9;
                   a=d+7492;
                   m1=a*235;
                 d1=m1/47;
                 s=d1-498;
               if(s<0)
                   s=-s;
                rem=((s/10)%10);
               printf("%ld\n",rem);
      }
      return 0;

}