摘要: package Maxmoney;public class Lchar{ public int climbStair(int t) { if(t == 0){ return 1; } int[] ST= new int[t+1]; ST[0] = 1; ST[1] = 1; for(int j=2; 阅读全文
posted @ 2017-03-09 11:40 "云"之巅战队 阅读(119) 评论(0) 推荐(0)
摘要: package Maxmoney; public class maxmoney { public static void main(String[] args) { int array[]={8,6,5,4,5}; System.out.println(maxmoney(array)); }publ 阅读全文
posted @ 2017-03-09 11:39 "云"之巅战队 阅读(98) 评论(0) 推荐(0)
摘要: #include "stdafx.h"#include<iostream>using namespace std;int _tmain(int argc, _TCHAR* argv[]){ int length=4; int array[3]={1,1,2}; for(int i=1;i<lengt 阅读全文
posted @ 2017-03-09 11:38 "云"之巅战队 阅读(89) 评论(0) 推荐(0)