提交时间:2019-10-10 20:07:15
运行 ID: 1465
#include<iostream> int main(){ int a=1,c=0; while(c<=8){ a=(a+1)*2; c=c+1; } printf("%d",a); return 0; }