题解 1171: 蟠桃记

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

蟠桃记——题解

摘要:```c++ #include using namespace std; int p(int x){ int y=(x+1)*2; return y; } int ma……

1171: 蟠桃记

摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) { ……
优质题解

Manchester-【蟠桃记】

摘要:解题思路:1.假设在第3天,剩余x=1个桃子;(等于前一天的除以2再-1)2.则在第2天剩余x=(1+1)*2=4个桃子;3.则在第1天剩余x=(1+4)*2=10个桃子;则根据归纳法得到:每一天剩余……