- 464 名前:デフォルトの名無しさん mailto:sage [2009/07/02(木) 21:29:15 ]
- >>463
#include <stdio.h> #include <float.h> int main(void){ double n; double low = DBL_MAX; double ans = 0; int i; for(i=0; i<10; ++i){ scanf("%lf", &n); ans += n; if(n < low) low = n; } ans -= low; printf("%f\n", ans); return 0; }
|

|