https://github.com/ultraji/nowcoder这个是答案的git地址利用集合去重的性质先在集合里面添加0当第一个砝码进来的时候{0} 变成 {0,0+1}->{0,1}当第二个砝码进来之后{0,1} 变成 {0,1,0+1,1+1}--> {0,1,2}当第三个砝码进来之后{0,1,2} 变成{0,1,2,0+2,1+2,2+2}---》 {0,1,2,3,4}全部遍历一遍之后结束整个程序即可,这个就是所能得到的所有结果 #include<bits/stdc++.h> using namespace std; //考点,set int mai...