关于数组初始化的问题!
来源: 互联网 发布时间:2015-06-03
本文导语: 一个用单纯形法求解最优解的源程序如下: public class OPMethod{ //get the max static int max(double a[]){ int x; int y; int column=0; double max; max=a[0]; for(x=0;xmax){ max=a[x]; column=x; } } return column; } ...
一个用单纯形法求解最优解的源程序如下:
public class OPMethod{
//get the max
static int max(double a[]){
int x;
int y;
int column=0;
double max;
max=a[0];
for(x=0;xmax){
max=a[x];
column=x;
}
}
return column;
}
//get the mix
static int min(double a[]){
int x;
int row=0;
double min;
min=a[0];
for(x=0;x
public class OPMethod{
//get the max
static int max(double a[]){
int x;
int y;
int column=0;
double max;
max=a[0];
for(x=0;xmax){
max=a[x];
column=x;
}
}
return column;
}
//get the mix
static int min(double a[]){
int x;
int row=0;
double min;
min=a[0];
for(x=0;x