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