求絕對值最大值 (sdut oj)
阿新 • • 發佈:2019-01-10
求絕對值最大值
Time Limit: 1000MS Memory Limit: 65536KBProblem Description
求n個整數中的絕對值最大的數。Input
輸入資料有2行,第一行為n,第二行是n個整數。Output
輸出n個整數中絕對值最大的數。Example Input
5 -1 2 3 4 -5
Example Output
-5
Hint
Author
參考程式碼
#include <stdio.h> #include <math.h> int main() { int n; int num; int max = 0; int i; scanf("%d",&n); for(i = 0; i < n; i++) { scanf("%d",&num); if(abs(max) < abs(num)) max = num; } printf("%d\n",max); return 0; }