2500for循环代码

thm13 2023-11-11 17:32:33 0

int sum(int l, int r){ int a=0; for(int i=l;i<=r;i++){ a+=i; } return a; }

{{ vote && vote.total.up }}