package liu.jyc;public class Question { public static void main(String[] args) { fun(); public static void fun(){ String[] a = new...
分类:
其他好文 时间:
2014-07-29 16:50:52
阅读次数:
193
前段时间炒的沸沸扬扬的由搜狐社区、中国保护大熊猫研究中心和长安福特联合主办的最FUN工作-“熊猫帮主”已落下帷幕,来自同济大学的山东90后荣膺“熊猫帮主”称号,将享有一份为期一年、包食宿、薪酬20万元、配有专用车的工作。为期两个月的招募“熊猫帮主”活动,得到了媒体..
分类:
其他好文 时间:
2014-07-29 15:46:10
阅读次数:
195
Description
We all love recursion! Don't we?
Consider a three-parameter recursive function w(a, b, c):
if a
1
if a > 20 or b > 20 or c > 20, then w(a, b, c) returns:
w(20, 20, 20)
...
分类:
其他好文 时间:
2014-07-29 14:54:08
阅读次数:
278
国际C语言混乱大赛的一个题:main() {printf(&unix["\021%six\012\0"],(unix)["have"]+"fun"-0x60);}这道题目输出的结果是:unix很有意思的一道题。。。。。本质还是数组和指针问题
分类:
其他好文 时间:
2014-07-29 11:03:46
阅读次数:
274
Summer months, for people like us, suggests the sun's rays, beachfront, brazilian bikini and many others. For anyone who is intending to enjoy the fun...
分类:
其他好文 时间:
2014-07-29 10:26:18
阅读次数:
363
在看Clang源码的过程中遇到过,返回const引用,于是就去google 了一下返回值以及参数传递等相关的知识。首先,为什么要(const 引用)的返回值?首先&的引用作用是C++独有的特性。其作用相当于传入参数时不经过拷贝,而是实实在在的传入。fun(int &a)。如果在函数内部修改了a的值,...
分类:
编程语言 时间:
2014-07-28 15:39:03
阅读次数:
251
代理是一种特殊的,指向某个方法模块所在的地址。一般来讲,那个方法模块,能够是一个普通的方法,很多其它的时候,是一团匿名的lamda表达式,即一个匿名方法。如今简单理解一下代理的简写方式,即Actionkeyword。 class A { B b = new B(); ...
分类:
其他好文 时间:
2014-07-28 15:11:53
阅读次数:
259
#include
void fun(char *c,int d)
{
*c=*c+1;d+=1;
printf("%c,%c\n",*c,d);
}
main()
{
char a='A',b='a';
fun(&b,a);printf("%c,%c\n",a,b);
}...
分类:
其他好文 时间:
2014-07-28 00:10:39
阅读次数:
197
一、题目DescriptionAfter winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made ofnhori...
分类:
其他好文 时间:
2014-07-27 22:38:59
阅读次数:
311
DescriptionAfter winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made ofnhorizont...
分类:
其他好文 时间:
2014-07-27 22:17:59
阅读次数:
309