提交时间:2019-10-19 11:15:56
运行 ID: 1735
#include<iostream> int main(){ int a=1,b; while(b<10){ a=(a+1)*2; b++; } printf("%d",a); return 0; }