#includeint main() { int res = 0; for (int i=1; i<=50; ++i) { res += 2*i; } printf("结果:%d\n", res); return 0;}