解题思路:很明显是个全排列,运用算法库的next_permutation即可;
注意事项:
参考代码:
#include<iostream> #include<algorithm> using namespace std; int main() { int s[10] = { 1,2,3,4,5,6,7,8,9 }; while (next_permutation(s, s + 9)) { int a = s[0] * 100 + s[1] * 10 + s[2]; int b = s[3] * 100 + s[4] * 10 + s[5]; int c = s[6] * 100 + s[7] * 10 + s[8]; if (b == 2 * a && c == 3 * a) cout << a << ' ' << b << ' ' << c << ' ' << endl; } return 0; }
0.0分
1 人评分
点我有惊喜!你懂得!浏览:2249 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:641 |
C二级辅导-同因查找 (C语言代码)浏览:592 |
2^k进制数 (C++代码)使用递归方法浏览:736 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:607 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:670 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:729 |
简单的a+b (C语言代码)浏览:765 |
弟弟的作业 (C++代码)浏览:1342 |
C语言训练-排序问题<1> (C++代码)浏览:632 |