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

蟠桃记

时间:2018-03-06 14:38:31      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:names   post   iostream   mes   span   using   clu   ==   use   

 1 #include <iostream>
 2 #include <algorithm>
 3 using namespace std;
 4 
 5 int main(){
 6     long long n;
 7     while (cin >> n){
 8         if (n == 0){
 9             //cout << 1 << endl;
10             continue;
11         }
12         int ans = 1;
13         for (int i = n - 1; i >= 1; i--){
14             ans = (ans + 1) * 2;
15         }
16         cout << ans << endl;
17     }
18 
19     //system("pause");
20     return 0;
21 }

 

蟠桃记

标签:names   post   iostream   mes   span   using   clu   ==   use   

原文地址:https://www.cnblogs.com/jaydenouyang/p/8513906.html

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