提交时间:2019-10-19 11:14:35

运行 ID: 1733

#include<iostream> int main(){ int a=1,b; while(b<10){ a=(a+1)*2; b++; } printf("%d",a); return 0; }