解题思路:
十重暴力直接搞定
注意事项:
参考代码:
#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语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复