经典算法——求绝对值溢出问题
Posted zhihua_bupt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了经典算法——求绝对值溢出问题相关的知识,希望对你有一定的参考价值。
#include<iostream> #include<cmath> #include<cstdio> using namespace std; int main() { float x; float res; while (cin >> x) { res = x>=0 ? x : -1 * x; printf("%.2f\n",res); } return 0; }
将x,res由float类型改为double类型就行:
#include<iostream> #include<cmath> #include<cstdio> using namespace std; int main() { double x; double res; while (cin >> x) { res = x>=0 ? x : -1 * x; printf("%.2f\n",res); } return 0; }
以上是关于经典算法——求绝对值溢出问题的主要内容,如果未能解决你的问题,请参考以下文章