虚拟机器人能够陪你:聊天、笑话、故事、成语接龙、吉凶、新闻、星座、百科问答、图片、天气、菜谱、快递、计算、日期、飞机、列车、知识库。功能非常强大哦!...
分类:
其他好文 时间:
2015-08-19 14:56:51
阅读次数:
125
Description
You are a butler in a large mansion. This mansion has so many rooms that they are merely referred to by number (room 0, 1, 2, 3, etc...). Your master is a particularly absent-minded lou...
分类:
其他好文 时间:
2015-08-19 14:56:20
阅读次数:
101
代码:
#include
#include
#include
using namespace std;
int prime(int n)
{
if(n==2||n==3)
{
return 1;
}
if(n%6!=1&&n%6!=5)
return 0;
for(int i=5; i*i<=n; i+=6)
{
...
分类:
其他好文 时间:
2015-08-19 14:54:32
阅读次数:
74
debu
F5:跳入方法
F6:向下逐行调试
F7:跳出方法
F8:直接跳转到下一个断点...
分类:
编程语言 时间:
2015-08-19 14:55:34
阅读次数:
121
save mat文件的时候出现以下错误:
matlab错误提示:
Warning: Variable 'a' cannot be saved to a MAT-file whose version
is older than 7.3.
To save this variable, use the -v7.3 switch.
Skipping...
解决办法:
1、打开ma...
分类:
其他好文 时间:
2015-08-19 14:55:03
阅读次数:
256
网上常用动态导航效果的代码分析...
分类:
其他好文 时间:
2015-08-19 14:54:04
阅读次数:
115
find the safest road
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 9285 Accepted Submission(s): 3287
Problem Description
XX星球有很多城...
分类:
其他好文 时间:
2015-08-19 14:53:05
阅读次数:
132
无意中发现的..试用了一下,感觉还不错,
简单说一下如何使用:
进入 http://code.taobao.org/project/explore/
注册完后根据提示新建项目,然后在本地随便新建一个目录,检出的时候输入在taocode上新建的项目的svn repo.这样就基本完成了.
如果要导入别人的项目做法也是类似,只需要获得别人的svn repo,然后在本地创建一个目录,检...
分类:
其他好文 时间:
2015-08-19 14:53:02
阅读次数:
166
Train Problem I
Problem Description
As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by train(because the trains in the Igna...
分类:
其他好文 时间:
2015-08-19 14:55:36
阅读次数:
112
Distinct Primes
Arithmancy is Draco Malfoy's favorite subject, but what spoils it for him is that Hermione Granger is in his class, and she is better than him at it. Prime numbers are of mystical im...
分类:
其他好文 时间:
2015-08-19 14:52:58
阅读次数:
109
try {
Class mClass = Class.forName("com.android.server.wifi.WifiSettingsStore");
Constructor con=mClass.getDeclaredConstructor(Context.class);
if(!con.isAccessible()){
con.setAccessible(t...
分类:
移动开发 时间:
2015-08-19 14:52:27
阅读次数:
135
Android基础入门教程——2.3.8 SeekBar(拖动条)
本节引言:
1.SeekBar基本用法
2.简单SeekBar定制
本节小结:...
分类:
移动开发 时间:
2015-08-19 14:52:08
阅读次数:
194
本文参考如下资料(建议阅读):
a). 公钥加密
b). Diffie-Hellman密钥交换
c). 公钥证书
公钥加密算法又称非对称加密算法,围绕这一算法延伸出很多东西,比如:公私密钥对,密钥交换,身份验证,证书,签名。。。
1. 密钥对
我们先从密钥对说起,这是其他所有拓展技术的核心。
公私密钥对实际上是一种数学元素延伸出来的产物,产生的过程如下(起源的方式):
...
分类:
编程语言 时间:
2015-08-19 14:53:14
阅读次数:
146
hdu1035是个模拟题,按照图上的方向走,走出grid,算出步数,走入循环,则输入循环体的个数有多少个,和走入循环体之前的个数多少个
#include
#include
using namespace std;
struct node
{
char c;
int count;
};
node nd[1005][1005];
int n,m,root;
int ste...
分类:
其他好文 时间:
2015-08-19 14:54:42
阅读次数:
92
一..抽象类中是否有构造函数?
答:抽象类中有构造函数,也可以有自定义的有参构造函数,但是抽象类不能实例化,它的构造函数仅提供给子类调用,实际意义暂时还没有发现。
二.抽象关键字abstract不可以和哪些关键字共存?
答:private:抽象类不可以实例化,抽象方法被private修饰不能被子类复写。
被final关键字修饰的方法不能复写,类不能创建子类。
抽象类中可不可以没有抽象...
分类:
其他好文 时间:
2015-08-19 14:51:50
阅读次数:
111
1.苦逼的需求又来了,需要实现一些动画效果,第一个想到的是播放gif图片,但是这样会占包的资源,并且清晰度不高,于是想着程序实现,自己用帧动画+缩放+移动+透明度 实现了一些想要的效果,这里跟大家分享一下
2.帧动画实现代码
1).首先获取每帧显示的ImageView控件,然后把所有帧放到AnimationDrawable对象里面去,开启动画,通过handle延时2秒关闭动画
...
分类:
移动开发 时间:
2015-08-19 14:53:10
阅读次数:
129
题目:
Write a program to check whether a given number is an ugly number.
Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 6,
8 are ugly while 14 is not ...
分类:
其他好文 时间:
2015-08-19 14:53:12
阅读次数:
113