题解 UVa11547
Posted s-t-a-r-d-u-s-t
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了题解 UVa11547相关的知识,希望对你有一定的参考价值。
"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的主要内容,如果未能解决你的问题,请参考以下文章