标签:style blog io color os for sp strong 数据
描述
有一堆桃子不知数目,猴子第一天吃掉一半,又多吃了一个,第二天照此方法,吃掉剩下桃子的一半又多一个,天天如此,到第m天早上,猴子发现只剩一只桃子了,问这堆桃子原来有多少个? (m<29)
2 3 11
22 6142
#include<iostream> using namespace std; int main() { int n; int num; int c ; cin>>n; while(n--) { num =1; cin>>c; for(int i=0;i<c;i++) { num = (num +1)*2; } cout<<num<<endl; } return 0; }
标签:style blog io color os for sp strong 数据
原文地址:http://www.cnblogs.com/imwtr/p/4069575.html