提交时间:2019-10-19 11:16:59

运行 ID: 1737

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