提交时间:2019-10-08 20:57:26

运行 ID: 1423

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