Run ID:114912

提交时间:2025-03-24 20:26:16

#include<stdio.h> int main(){ int p; int i; i = 1; while (i <= 100){ p += i; i++; } printf("%d",p); return 0; }