题解
2023-07-17 10:55:32
发布于:浙江
6阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main()
{
int k,b,xmin,xmax;
bool a;
cin>>a>>k>>b>>xmin>>xmax;
if(a==true)
{
if(k<0)
{
cout<<k*xmin+b;
}
else
{
cout<<k*xmax+b;
}
}
else
{
if(k>0)
{
cout<<k*xmin+b;
}
else
{
cout<<k*xmax+b;
}
}
}
这里空空如也
有帮助,赞一个