#include <stdio.h> #include <stdlib.h> int main () { int sum = 0; for (int i=1; i<=100; i++) { sum = sum + i; } printf("总和为: %d", sum); return 0; }