问题标题: 酷町堂:2673 多项式减法

0
0
已解决
翟谦瑞
翟谦瑞
新手守护
新手守护
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    int a,b,c,d,e,f;
    cin>>a>>b>>c>>d>>e>>f;
    cout<<abs(a-d)<<" "<<abs(b-e)<<" "<<abs(c-f);
    return 0;
}

题目太难,伤透我的心……

只有42分。

请各位大佬帮帮我。


0
已采纳
贾文卓
贾文卓
高级光能
高级光能

你的思路有问题,应该先判断用哪个减去哪个,再输出,不需要绝对值。

0
0
宫西诚
宫西诚
修练者
修练者

这题只需要一个简单判断啦,

    int a,b,c,d,e,f,g;
    cin>>a>>b>>c>>d>>e>>f;
    if(a-d>=0)
    cout<<a-d<<" "<<b-e<<" "<<c-f;
    else
    cout<<d-a<<" "<<e-b<<" "<<f-c;
 求采纳

我要回答