include using namespace std;int main() {for (int i = 2; i <= 1000; i++) {//从2到1000的数int sum = 0;//因子总和for (int j = 1; (j * j) <= i; ...