A. Div.

A. Div.,第1张

A. Div.
#include 

using 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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5718587.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-18

发表评论

登录后才能评论

评论列表(0条)

保存