原文: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
1 #include<cstdio> 2 using namespace std; 3 int t; 4 int main(){ 5 long long int a,b,c; 6 scanf("%d",&t); 7 for(int i=1;i<=t;i++){ 8 scanf("%lld %lld ...
分类:
其他好文 时间:
2020-04-14 00:32:12
阅读次数:
63
题目如下: 思路: (1)题目的意思:让我们把十进制转化为十三进制,再把十三进制转化为十进制 (2)需要注意的是,如果转化为十三进制的时候 eg;input 26(13的倍数),那么十三进制为10,重点来了这个时候不是让你输入一零 而是让你输入是十,也就是只输入高位就可以了 代码如下: #inclu ...
分类:
其他好文 时间:
2020-04-12 16:12:02
阅读次数:
70
MySQL的起源: MySQL数据库的历史可以追溯到1979年,那时Bill Gates退学没多久,微软公司也才刚刚起步,而Larry Ellison的Oracle公司也才成立不久。那个时候有一个天才程序员Monty Widenius为一个名为TcX的小公司打工,并且用BASIC设计了一个报表工具, ...
分类:
数据库 时间:
2020-04-11 23:44:02
阅读次数:
368
Basic Gestures 基本手势 TapGesture LongPressGesture DragGesture MagnificationGesture RotationGesture Combined Gestures 合并手势 SequenceGesture SimultaneousGe ...
分类:
编程语言 时间:
2020-04-11 00:45:27
阅读次数:
93
25分题中不是很难的一道,没错我就是挑软柿子捏,今天一定要把basic搞完,阿弥陀佛别拖拉了。。。 第一次提交后三个测试点运行超时(循环过多吧)。。。。一开始是每遇到一个A就从前往后循环看这个A前面有多少P,有多少T。 第二次提交后后两个测试点答案错误,但是不超时了!微笑 ^ ^ 由于结果可能比较大 ...
分类:
其他好文 时间:
2020-04-08 12:18:37
阅读次数:
74
1、RabbitMQ中mandatory和immediate以及备份交换机 (1)mandatory为true时,若交换机无法根据自身类型和路由键找到符合条件的对列,那么RabbitMQ会回调Basic.Return将消息返回生产者。 生产者可以调用channel.addReturnListener ...
分类:
其他好文 时间:
2020-04-07 20:20:23
阅读次数:
69