Easier Done Than Said?
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 9845 Accepted Submission(s): 4784
Problem Description
Pas...
分类:
编程语言 时间:
2015-06-07 17:29:37
阅读次数:
141
This morning when I do apt-get update on my new Ubuntu 14.04 server, I got these error messages:Reading package lists… Done W: GPG error: http://secur...
分类:
系统相关 时间:
2015-06-05 11:55:46
阅读次数:
324
There are no interfaces on which a capture can be done.今天启动了Wireshark但是提示→There are no interfaces on which a capture can be done.右击→以管理员身份运行Ok
分类:
其他好文 时间:
2015-06-04 15:12:11
阅读次数:
117
declare -A animals=(["moo"]="cow" ["woof"]="dog")for sound in "${!animals[@]}";doecho "$sound - ${animals["$sound"]}";done
分类:
其他好文 时间:
2015-06-04 11:13:14
阅读次数:
118
分析:判断密码是否安全。
三个条件:至少一个元音字母,连续三个字母不能同时为元音或辅音,连续两个字母不能相同,但"ee"和"oo"除外。
#include
using namespace std;
bool isyuan(char c)
{
return c=='a' || c=='e' || c=='i' || c=='o' || c=='u';
}
bool judge(char a...
分类:
其他好文 时间:
2015-06-03 21:40:44
阅读次数:
111
eclipse中maven插件失效 如果切换工作区间就ok的,但是太麻烦了 关闭eclipse cd /path/workspace ?(进入工作区间) cd .metadata/.plugins rm -rf *.m2e.*/ ? 重新启动启eclipse done...
分类:
系统相关 时间:
2015-06-03 12:04:36
阅读次数:
135
一、for循环语句的两种用法1、遍历有限的元素列表,语句在同一行用;分隔语法:forVAR_NAMEinLISTdo循环体doneLIST:列表,中间包括一个或多个元素退出条件:遍历结束2、条件测试语法:for((初始条件;测试条件;修改表达式))do循环体done二、if条件语句的用法1、单分支if语句..
分类:
其他好文 时间:
2015-06-02 11:27:22
阅读次数:
102
何为Font-Awesome
Font Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
简言之:可伸缩的图标(矢量化),高度自定义(大小,...
分类:
其他好文 时间:
2015-05-31 23:18:45
阅读次数:
371
第1阶段冲刺成果 由于我们团队都没有Android的基础,所以在这一块花了很长的时间去学习探索,就连简单的Android的电脑配置也花了很长的时间,所以其他的DONE的都没有完成,这是失败的地方。但是我们学到了一门新的技术,我们开发构建一个简单的APP应用。在第1次的冲刺我们的成果如下:1.完成了....
分类:
移动开发 时间:
2015-05-29 19:58:50
阅读次数:
182