提交时间:2019-10-17 20:39:01
运行 ID: 1658
#include<iostream> int main(){ int day=0,s=1; while(day<9){ s=(s+1)*2; day=day+1; } printf("%d",s); return 0; }