c++代码: 在input模块不能用while(cin)不知道为什么感觉是牛客的bug,要是有人知道麻烦解释一下 #include #include using namespace std; vector find_num(int min, int max) { vector temp; for (int i = min; i <= max; i++) { int temp1 = i % 10; int temp10 = ((i - temp1) % 100)/10; int temp100 = i / 100; if (temp1temp1temp1 + temp10 * temp10...