#define _CRT_SECURE_NO_WARNINGS#include#include#include#include#includeusing namespace std;const int N = 101;bool isSushu(int n){ if (n % 2 == 0 ||...
分类:
编程语言 时间:
2015-09-02 00:15:02
阅读次数:
274
安装 SSH(Secure Shell) 服务以提供远程管理服务? sudo apt-get install ssh? SSH 远程登入 Ubuntu 机? ssh username@192.168.0.1? 将 文件/文件夹 从远程 Ubuntu 机拷至本地(scp)? scp -r username@192.16...
分类:
Web程序 时间:
2015-09-01 00:17:11
阅读次数:
146
英文:The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel 使用HttpWebRequest 访问 https://mapi.alipay...
分类:
其他好文 时间:
2015-08-31 16:48:41
阅读次数:
273
#define _CRT_SECURE_NO_WARNINGS#include#include#includeusing namespace std;#define N 500int n1, n2, ans;int result[N];bool state[N];bool map[N][N];boo...
分类:
编程语言 时间:
2015-08-31 13:09:29
阅读次数:
144
每笔收入产生的收益是独立的。计算所有点的收益率,累计。#define _CRT_SECURE_NO_WARNINGS#include#include#includeusing namespace std;struct dd{ int d, e;}ndd[2505];struct ddd{ ...
分类:
其他好文 时间:
2015-08-30 21:03:51
阅读次数:
132
#define _CRT_SECURE_NO_WARNINGS #include #include #include typedef struct Node{ int data; struct Node *next;}SLIST;SLIST *SList_Create(); //创建链...
分类:
其他好文 时间:
2015-08-29 18:44:36
阅读次数:
123
#define _CRT_SECURE_NO_WARNINGS#include#include#includeusing namespace std;#define BITMAX 1002 //数组大小typedef int valueType; //元素类型定义valueTyp...
分类:
编程语言 时间:
2015-08-29 14:00:18
阅读次数:
202
#define _CRT_SECURE_NO_WARNINGS#include#includeusing namespace std;#define BITMAX 50001 //数组大小typedef int valueType; //元素类型定义valueType BITre...
分类:
编程语言 时间:
2015-08-29 13:55:40
阅读次数:
220