提交时间:2019-10-16 21:29:16

运行 ID: 1637

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