#include<stdio.h> #pragma warning(disable:4996) int main() { int x = 5, j; for (j = 1; j < 8; j++) { x = (x + 5) * 2; } printf("%d", x); return 0; }
用for循环找数。
免费解答各种技术问题,有疑惑可私聊