编程求出满足以下条件的三位数:它除以11所得的商等于它各位数字之和.
无输入
一行一个整数
#include <iostream> using namespace std; int main() { cout << "198"; return 0; }