HDU2003 2015-12-03 算法 123456789101112#include <cstdio>#include <cstdlib>int main(){ double x; while(scanf("%lf",&x)!=EOF){ if(x<0) x=-x; printf("%lf\n",x); } return 0;} 最后更新时间:2023-06-23 16:56:15 欢迎评论~ Prev HDU2004 Next HDU2002