#include <stdio.h>#include <locale.h>char *Weekdays[] = { "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" };void printWee ...
分类:
编程语言 时间:
2016-07-25 16:09:40
阅读次数:
215
List是长度不可变,内容也不可变的 初始化: val days = List("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday",1,2,3,4,5,6,7) // 通过apply创建val so ...
分类:
其他好文 时间:
2016-07-12 19:17:32
阅读次数:
152
I want to win a trophy, it's the most important. 我希望获得冠军奖杯,这是最重要的事情。 Win a trophy, stand on the very peak point of your career, that may be the dream ...
分类:
其他好文 时间:
2016-07-11 21:11:28
阅读次数:
161
next_day()获得当前日期的下一个星期几的日期,从字面意思容易理解成是获得当前日期的接下来的几天的日期。例如:selectnext_day(to_date(‘20160330‘,‘yyyymmdd‘),1)fromdual;返回结果是20160403。参数可以是数字1-7或者是monday-sunday获得下个星期的周几的日期。另外一个常用..
分类:
数据库 时间:
2016-06-30 14:49:32
阅读次数:
181
原文地址:https://sjolzy.cn/js-custom-object.html 29 March 2010 9:53 Monday by 小屋 javascript进阶之对象篇 一,概述 在Java语言中,我们可以定义自己的类,并根据这些类创建对象来使用,在Javascript中,我们也可 ...
分类:
Web程序 时间:
2016-06-24 10:45:30
阅读次数:
204
Description The girl Taylor has a beautiful calendar for the year y. In the calendar all days are given with their days of week: Monday, Tuesday, Wedn ...
分类:
其他好文 时间:
2016-06-15 13:59:32
阅读次数:
170
mysql更改用户权限 This entry was posted by admin Monday, 26 April, 2010 1.“grant all on *.* to root@’%’ identified by ‘yourpassword’;”——这个还可以顺带设置密码。2.“flush ...
分类:
数据库 时间:
2016-06-03 14:15:45
阅读次数:
256
// 一维数组 // 定义方式:int [ ] 变量名 = new int [ n ]; // 初始化:int [ ] myArray = new int [ ] {1,2,3,4,5}; string [] weekdays = new string [] {"Sunday","Monday"," ...
分类:
编程语言 时间:
2016-05-11 01:04:24
阅读次数:
120
最近工作中经常用到Enum中Value、String、Description之间的相互转换,特此总结一下。 1.首先定义Enum对象 1 public enum Weekday 2 { 3 [Description("星期一")] 4 Monday=1, 5 [Description("星期二")] ...
分类:
编程语言 时间:
2016-05-05 00:34:07
阅读次数:
220
笔试的时候经常遇到突然string s;cin>>s; 有的时候编译会错误,不知道为什么。 今天在练习枚举类型的时候,也遇到这样一个问题。 enum weekday{Monday,Tuesday} day; cin>>day;//报错 scanf("%d",&day);//正常 周纯洁的书上也都是用 ...
分类:
其他好文 时间:
2016-04-18 20:34:42
阅读次数:
111