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

题解 UVa11547

时间:2019-08-30 20:59:32      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:手动   names   pac   out   rac   bit   cpp   math   add   

"Multiply n by 567, then divide the result by 9, then add 7492, then multiply by 235, then divideby 47, then subtract 498. What is the digit in the tens column?"

整道题里只有这一句是有用的。

题意翻译:给定\(t\),输入\(t\)\(n\),对每个\(n\)求出\((n*567/9+7492)*235/47-498\)的十位数。

手动模拟即可。

代码:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        long long n;
        cin>>n;
        cout<<abs(((n*567/9+7492)*235/47-498)/10%10)<<endl;
    }
    
    return 0;
}

题解 UVa11547

标签:手动   names   pac   out   rac   bit   cpp   math   add   

原文地址:https://www.cnblogs.com/s-t-a-r-d-u-s-t/p/11436828.html

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