//--day.150925 Rainny day. Autumn festival. Going home. ¥500.00. Osmanthus. //桂花: Osmanthus blossoms give off a rich perfume.//--day.150926 M...
分类:
其他好文 时间:
2015-09-26 09:17:40
阅读次数:
180
enum season{ spring = 1, summer, autumn, winter //没有, };//; //变量类型是 enum season 变量名是 currentSeason 变量初始值为spring enum season currentSeas...
分类:
编程语言 时间:
2015-09-18 17:58:56
阅读次数:
247
Apple Tree
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 21566
Accepted: 6548
Description
There is an apple tree outside of kaka's house. Every autumn, a...
分类:
移动开发 时间:
2015-08-11 10:13:43
阅读次数:
114
题目如下:
Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in traditional mooncakes according to the region's ...
分类:
其他好文 时间:
2015-08-04 13:32:50
阅读次数:
111
DescriptionThere is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has ...
分类:
移动开发 时间:
2015-07-17 18:31:44
阅读次数:
144
http://acm.hdu.edu.cn/showproblem.php?pid=4122
Problem Description
The Mid-Autumn Festival, also known as the Moon Festival or Zhongqiu Festival is a popular harvest festival celebrated by Chi...
分类:
其他好文 时间:
2015-07-16 14:04:57
阅读次数:
101
Description
There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefully nurturing the big apple tree.
...
分类:
移动开发 时间:
2015-06-25 12:24:40
阅读次数:
161
Description
There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefully nurturing the big apple tree.
...
分类:
移动开发 时间:
2015-06-06 15:02:30
阅读次数:
157
枚举是c语言中得一种基本数据类型,不是数据结构用于声明一组常数1. 3中枚举变量的方式a. 先定义类型, 再定义变量b. 同时定义类型和变量c. 匿名定义enum Season {Spring, Summer, Autumn, Winter};enum Season s = Spring;已经定位为...
分类:
编程语言 时间:
2015-05-13 19:33:26
阅读次数:
130
Java1.5提供了关键字enum,能够通过该关键字方便得定义自己须要的枚举类型,比方enumSeason{SPRING,SUMMER,AUTUMN,WINTER}就定义了一个季节枚举类型。在本例中,对于Season.SPRING这个对象,Season.SPRING.name()能够得到该对象的字符...
分类:
编程语言 时间:
2015-05-11 20:02:08
阅读次数:
159