9个数字组成三个数字使加法等式成立

/******* *9个数字组成三个数字使加法等式成立 *******/ #include <stdio.h> #include <stdlib.h> int n=9, count=0; int book[10], a[10]; void dfs(int step) { if(step==n+1) { int sum1 = (a[1]+a[4])*100+(a[2]+a[5])*1
相关文章
相关标签/搜索