@echo offrem //不少公司的网管试图解决双网卡问题,下面我就给大家详细的讲解一下双网卡同时使用的方法,这样即可保障内网的安全,又能解决电脑访问外网的问题,一举两得。希望大家喜欢。rem //首先你的机器需要有两块网卡,分别接到两台交换机上,rem //internet地址:192.168...
分类:
其他好文 时间:
2014-08-09 15:38:08
阅读次数:
230
----------------------------------------------------------------------------------------------------------------- eb_rp_pertrancereportday(个人网银业务状况...
分类:
其他好文 时间:
2014-08-09 15:36:38
阅读次数:
251
预授权完成 500 900 1000一个人住3天 474剩下为一起住 上次5天房费每人 390块 税钱 50块--------------------------------------------------------邓凯授权完成 1000这次 15天 , 每人房费 1...
分类:
其他好文 时间:
2014-08-09 13:27:17
阅读次数:
184
// mootools // auditFlag = $(this).getElement('>td input[id="auditFlag"]').val() // .getParent() //获得一个元素的父元素 //. setStyle('background-color'...
分类:
其他好文 时间:
2014-08-09 13:27:07
阅读次数:
248
自己补充的整个程序,包括排序,旋转,查找#include
using namespace std;
void my_sort(int a[],int len)
{
int temp;
for (int i=0;i<len-1;i++)
{
for (int j=0;ja[j+1])
{
temp = a[j];
...
分类:
其他好文 时间:
2014-08-09 11:45:37
阅读次数:
195
(一)关于模板,Template ????可以在项目根目录下的settings.py 配置文件中,声明 import?os
BASE_DIR?=?os.path.dirname(os.path.dirname(__file__))
TEMPLATE_DIRS?=?os.path.join(BASE_DIR,?‘temp...
分类:
编程语言 时间:
2014-08-09 00:22:37
阅读次数:
265
冒泡排序:#include #include #include #define N 100000#define M 100000void show_arr(int * a,int n){ int i; for(i = 0; i a[j+1]) { temp = a[j]; a[j] = a[j+1]...
分类:
其他好文 时间:
2014-08-09 00:00:36
阅读次数:
357
//1、输入一个数,将其每一位分离,并保存如一个数组//2、判断数组最后录入的一位是第几位//3、循环判断是否满足回问数的要求#includeusing namespace std;int main(){ int n,temp; int k=0; int a[20]; cou...
分类:
其他好文 时间:
2014-08-08 23:40:46
阅读次数:
658
1 递归,很简单
代码:
#include
using namespace std;
typedef struct node{
int data;
struct node * pNext;
}Node ,*pNode;
void createNode(pNode & pHead){
int temp;
scanf("%d",&temp);
pNode p,q;
boo...
分类:
其他好文 时间:
2014-08-08 21:28:56
阅读次数:
314
1 2 3 4 55 1 2 3 44 5 1 2 33 4 5 1 22 3 4 5 1(1)运用循环嵌套,并设置中间变量转换//1、新建一个数组//2、输入内容并存储//3、输出结果#includeusing namespace std;int main(){ int temp; i...
分类:
其他好文 时间:
2014-08-08 21:16:16
阅读次数:
527