单纯形法的C++程序详解过程
发布网友
发布时间:2022-04-23 14:30
我来回答
共1个回答
热心网友
时间:2023-07-02 01:39
#include <iostream>
using namespace std;
int main()
{
int x1,x2,max=0;
for(x1=0;x1<=100;x1++)
for (x2=0;x2<=100;x2++)
{
if (2*x1+3*x2<=100&&4*x1+2*x2<=120)
{
cout<<"x1="<<x1<<",x2="<<x2<<",maxZ="<<6*x1+4*x2<<endl;
if(max<6*x1+4*x2)
max = 6*x1+4*x2;
}
}
cout<<"MAX = "<<max<<endl;
return 0;
}