解题思路:
十重暴力直接搞定
注意事项:
参考代码:
#include <iostream>
#include <deque>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <string>
#include <cmath>
#include <cstdlib>
#include <string.h>
using namespace std;
int main()
{
int n;
while(cin>>n)
{
for(int a=9;a<12;a++)
{
for(int b=9;b<12;b++)
{
for(int c=9;c<12;c++)
{
for(int d=9;d<12;d++)
{
for(int e=9;e<12;e++)
{
for(int f=9;f<12;f++)
{
for(int g=9;g<12;g++)
{
for(int h=9;h<12;h++)
{
for(int i=9;i<12;i++)
{
for(int j=9;j<12;j++)
{
if(a+b*3+c*pow(3,2)+d*pow(3,3)+e*pow(3,4)+f*pow(3,5)+g*pow(3,6)+h*pow(3,7)+i*pow(3,8)+j*pow(3,9)==n)
{
cout<<a<<" "<<b<<" "<<c<<" "<<d<<" "<<e<<" "<<f<<" "<<g<<" "<<h<<" "<<i<<" "<<j<<endl;
}
}
}
}
}
}
}
}
}
}
}
}
return 0;
}
0.0分
2 人评分
数组输出 (C语言代码)浏览:811 |
数列排序 (C语言代码)浏览:858 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:566 |
最小公倍数 (C语言代码)浏览:1109 |
1126题解浏览:649 |
矩形面积交 (C++代码)浏览:1205 |
C语言程序设计教程(第三版)课后习题10.7 (用指针求解)浏览:1542 |
简单的a+b (C语言代码)浏览:491 |
C二级辅导-统计字符 (C语言代码)浏览:695 |
青年歌手大奖赛_评委会打分 (C语言代码)浏览:2248 |