标签:手动 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;
}
标签:手动 names pac out rac bit cpp math add
原文地址:https://www.cnblogs.com/s-t-a-r-d-u-s-t/p/11436828.html