这什么奇葩问题
#include <cstdio> int main(){ int x = 5, i; i = 0; while(i < 7){ i++; x += 5; x *= 2; } printf("%d", x); return 0; }