码迷,mamicode.com
首页 > 其他好文 > 详细

1132 Cut Integer (20 分)

时间:2021-03-04 13:05:25      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:size   lin   use   ret   inline   情况   span   注意   else   

水~。

注意右半部为\(0\)的情况。

int main()
{
    int T;
    cin>>T;
    while(T--)
    {
        string s;
        cin>>s;

        string a=s.substr(0,s.size()/2),b=s.substr(s.size()/2);
        int ts=stoi(s),ta=stoi(a),tb=stoi(b);
        if(tb && ts%(ta*tb)== 0)
            puts("Yes");
        else
            puts("No");
    }
    //system("pause");
    return 0;
}

1132 Cut Integer (20 分)

标签:size   lin   use   ret   inline   情况   span   注意   else   

原文地址:https://www.cnblogs.com/fxh0707/p/14475001.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!