摘录自: http://cn.linux.vbird.org/linux_basic/0210filepermission.php 查看权限 ls -al total 156 drwxr-x 4 root root 4096 Sep 8 14:06 . drwxr-xr-x 23 root root ...
分类:
系统相关 时间:
2020-04-18 09:43:08
阅读次数:
77
Walkthrough: Creating and Registering a Custom HTTP Module This walkthrough illustrates the basic functionality of a custom HTTP module. An HTTP modul ...
分类:
Web程序 时间:
2020-04-17 15:18:50
阅读次数:
81
Problem: A?+?B is a problem used to test one's basic knowledge for competitive programming. Here is yet another boring variation of it. You have two i ...
分类:
其他好文 时间:
2020-04-16 22:50:39
阅读次数:
182
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>class操作</title> <style> li.basic { background-color: pink; font-size: 32px; c ...
分类:
Web程序 时间:
2020-04-16 14:54:41
阅读次数:
71
杨辉三角 dp[i][j]=dp[i 1][j]+dp[i 1][j 1],初始化dp[1][1]=1; ...
分类:
其他好文 时间:
2020-04-15 18:44:37
阅读次数:
90
原文:http://slacksite.com/other/ftp.html中文翻译:http://www.phpweblog.net/killjin/archive/2008/01/06/2653.htmlContents: Introduction The Basics Active FTP A ...
分类:
其他好文 时间:
2020-04-15 11:09:43
阅读次数:
75
1 #include<cstdio> 2 using namespace std; 3 int num[5],sumn[5],n; 4 void init(); 5 void read(); 6 void deal(); 7 int main(){ 8 init(); 9 read(); 10 de ...
分类:
其他好文 时间:
2020-04-14 01:11:37
阅读次数:
80
1 #include<stdio.h> 2 #define MAXN 100000 3 struct poly{ 4 int exp,var; 5 }; 6 struct poly a[MAXN]; 7 void read(); 8 void deal(); 9 void print(); 10 i ...
分类:
其他好文 时间:
2020-04-14 01:07:49
阅读次数:
69