火柴棒的問題c語言(枚舉)

來源:互聯網
上載者:User

標籤:

規則:

1、a + b = c;

2、用完火柴棒;

代碼如下:

 1 #include <stdio.h> 2 int fun(int x); 3   4 int main() 5 { 6     int a,b,c,sum=0,m; 7     scanf("%d",&m);                    //輸入火柴的根數  8     for(a=0;a<=1111;a++) 9     {10         for(b=0;b<=1111;b++)11         {12             c=a+b;13             if(fun(a) + fun(b) +fun(c)==m-4)14             {15                 printf("%d + %d = %d\n",a,b,c);16                 sum++; 17             }18         }19     }20     printf("total %d\n",sum);      //總的方法 21     return 0;22 }23 24 int fun(int x)25 {26     int num=0;27     char a[]={6,2,5,5,4,5,6,3,7,6};28     while((x/10)!=0)29     {30         num += a[x%10];31         x/=10;32     }33     num +=a[x];34     return num;35 }

該方法視 a+b=c與b+a=c為不同方法。

火柴棒的問題c語言(枚舉)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.