#include int main(){ int n = 10000, s = 0; for(int i = 1; i <= n; ++i){ s = s + i * i; } printf("%d\n", s); return 0;}代码只是凑数的