int sum( int m, int n ){ int temp=0; for(int i=m;i<=n;i++){ temp +=i; } return temp; }
暂无评论,快来抢首评~
相关推荐