提交时间:2019-10-07 18:56:05
运行 ID: 1363
#include<iostream> int main(){ int js=1,ts=9; while(ts>0){ js=(js+1)*2; ts--; } printf("%d",js); return 0; }