clear s1=0 s2=0 for i=1 to 500 if i%2=0 s1=s1+i^3 else s2=s2+i^3 endif next ? "偶数立方和与奇数立方和之差为:", s1-s2