阅读背景:

不同的库使用相同的函数得到不同的结果

来源:互联网 

Here is some code:

这里有一些代码:

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    long long int a, b;
    long long int c;

    cin >> a >> b;

    c = abs(a) + abs(b);
    cout << c;
    cout << endl;
}
#include <iostr



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: