- 博客(1)
- 收藏
- 关注
原创 C++ 运行时输入一个整数,将其拆成三个正整数之和,输出所有的不重复组合。
#include <iostream>#include <stdlib.h>#include <vector>using namespace std;int main(){ int integer = 6; vector<int (*)[3]> ve;//存放每次找到的不同的数字序列 bool bo[3] = {true};// 辅助判断是否重复 cout<<"Pl...
2021-11-26 01:00:00 2806
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人