首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴qinmi258的代码贴全部
#include"stdio.h"
int max(int N,int M)
{
int arr[100][100];
if(N>1&&M>1)
{
max(N,M)=max(N-1,M)>max(N,M-1)?max(N-1,M):max(N,M-1);
max(N,M)=+arr[N-1][M-1];
}
if(N==0&&M!=0)
max(N,M)=max(N,M-1)+arr[N][M-1];
if(M==0&&N!=0)
......................
阅读全部 | 2013年7月7日 13:37
1
qinmi258