遍历 1 - 10000 ,找出3的倍数,以此加在一起就可以了。如果你用objectc-c写的话我可以帮你。
#includemain(){int x,sum=0;for(x=1;x<=10000;x++){if(x%3==0){sum+=x;}}printf("sum=%d",sum);}