软件工程股票买卖

#include "stdafx.h"
#include<iostream>
using namespace std;


int _tmain(int argc, _TCHAR* argv[])
{
 int m[7]={2,2,4,6,8,2,9 };
    int a,b,max=0;
    for(a=0;a<7;a++)
{
  for(b=0;b<7;b++)
{
if(m[a]-m[b]>max)
{ max=m[a]-m[b];}
  }
}
cout<<"最大利润:"<<max;
return 0;

}

posted @ 2017-03-07 21:44  王钰琳  阅读(92)  评论(0编辑  收藏  举报