PTA平臺本題要求實現一個計算m到n之間全部整數的和的簡單函數。

本題要求實現一個計算m~n(m<n)之間全部整數的和的簡單函數。函數 函數接口定義: int sum( int m, int n ); 其中m和n是用戶傳入的參數,保證有m<n。函數返回的是m~n之間全部整數的和。code 代碼:blog #include <stdio.h> int sum(int m, int n); int main() { int m, n;
相關文章
相關標籤/搜索