C语言1加到10000怎么做

日期:2021-05-29 01:29:09 人气:1

C语言1加到10000怎么做

int allcount=0;
int i;
for(i=0;i<10001;i++)
{
allcount+=i;
}
    A+
热门评论