#includeusing i64 = long long; void solve() { int n; std::cin >> n; if (n % 7 == 0) { std::cout << n << "n"; } else { n -= n % 10; n += 9; n -= n % 7; std::cout << n << "n"; } } int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; std::cin >> t; while (t--) { solve(); } return 0; }
jiangly的代码,十个数之内必然有一个7的倍数xx0-xx9
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)