喵喵选土豆
Posted NWU_ACM
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了喵喵选土豆相关的知识,希望对你有一定的参考价值。
1 #include<iostream> 2 #include<algorithm> 3 #include<string.h> 4 #include<math.h> 5 #define ll long long 6 #define IO ios_base::sync_with_stdio(0);cin.tie(0); 7 using namespace std; 8 void deal(ll x) 9 { 10 ll ans = 0; 11 ll k = 1ll; 12 while(x){ 13 ans += (x & 1ll) * k; 14 k *= 3ll; 15 x = x >> 1; 16 } 17 cout << ans << endl; 18 } 19 int main() 20 {IO; 21 ll T; 22 cin >> T; 23 for(int i = 1; i <= T; i ++){ 24 cout << "case " << i << ": "; 25 ll n; 26 cin >> n; 27 deal(n); 28 } 29 return 0; 30 }
以上是关于喵喵选土豆的主要内容,如果未能解决你的问题,请参考以下文章
前端css综合案例1-7:新闻页面五彩导航产品模块快报模块学成在线首页CSS三角土豆案例