摘要:
#include using namespace std;int max(int x, int y){ return x > y ? x : y;}int MaxSum(int* a, int n){ int i, res; int* start = new int[n]; int* all = new int[n]; start[n - 1] = a[n - 1];... 阅读全文
posted @ 2013-10-23 22:30
Krime Rex
阅读(327)评论(0)推荐(0)
摘要:
测试: class TestClass { static void C# Main(string[] args) { // Display the number of command line arguments: System.Console.WriteLine(args.Length); } } 阅读全文
posted @ 2013-05-18 10:48
Krime Rex
阅读(161)评论(0)推荐(0)