码迷,mamicode.com
首页 >  
搜索关键字:cal    ( 15303个结果
POJ 2398
#include #include #include #include using namespace std;const int Max=1050;struct e{ int x1,x2;}edge[Max];struct c{ int x,y;}cal[4];int n,m;int X1,Y1,...
分类:其他好文   时间:2014-07-26 00:07:26    阅读次数:260
Java UTC Time
项目需要把 long 转换成 Timestamp,而且需要是 UTC 时间格式。 网上 google了好久,总结了这个写法 Calendar?cal?=?Calendar.getInstance(); long?value?=?cal.getTimeInMillis();???????//your?l...
分类:编程语言   时间:2014-07-25 11:43:41    阅读次数:278
Cocos2dx选择器
今天学习cocos2dx的时候发现原来所有选择器要求传递的回调函数的参数是有限制的,看了库中的定义后就遇到的整理如下,仅供参考,Cocos2dx版本2.2.3:选择器参数说明schedule_selector(浮点数)[float dt]callfunc_selector(无参数)[void]cal...
分类:其他好文   时间:2014-07-20 00:04:35    阅读次数:296
UVA 11722 - Joining with Friend(概率)
UVA 11722 - Joining with Friend 题目链接 题意:你会在[t1,t2]时刻到,你朋友会在[s1,s2]时刻到,两个人都停留w,问两人碰面的概率 思路:概率题,画图,计算围成面积/总面积就是概率 代码: #include #include int t; double t1, t2, s1, s2, w; double cal(dou...
分类:其他好文   时间:2014-07-17 15:31:30    阅读次数:262
(1+2+3-1-2)*1*2/1/2=?李冬强
主要代码//// ViewController.m// Cal-0710//// Created by apple on 14-7-10.// Copyright (c) 2014年 戴维营教育. All rights reserved.//#import "ViewController.h"@in...
分类:其他好文   时间:2014-07-16 20:42:40    阅读次数:193
<<Linux 命令行大全学习1~2章笔记>>暑假学习
>暑假学习第一章:shell是什么?1shellShell是一个和Linux内核交互的解释性程序,我们在图形用户下通过shell终端仿真器可以和操作系统进行交互。2本章命令行date:显示时间cal:显示日历df:显示磁盘驱动器内存free:显示系统内存exit:退出终端第二章:导航2.1理解文件系...
分类:系统相关   时间:2014-07-14 21:39:39    阅读次数:339
简单计算器
#import "ViewController.h"#import "cal.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UILabel *calrusult; @end float i=10.0;@i...
分类:其他好文   时间:2014-07-14 09:40:03    阅读次数:282
Java Calendar日历类的使用
Calendar cal = Calendar.getInstance(); // 当前年 int year = cal.get(Calendar.YEAR); // 当前月 int month = (cal.get(Calendar.MONTH)) + ...
分类:编程语言   时间:2014-07-11 21:45:40    阅读次数:222
U-boot引导流程分析二
Stage II过程分析 在Stage II中使用到了一些比较重要的数据结构,这里先对这些数据结构来进行下分析: typedef struct global_data { bd_t *bd; unsigned long flags; unsigned long baudrate; unsigned long have_console; /* serial_init() was cal...
分类:其他好文   时间:2014-07-01 06:16:16    阅读次数:371
calculate Leave Days
//根据传入的日期得到周末. public static int getDayOfWeek(Date date){ Calendar cal=Calendar.getInstance(); cal.setTime(date); int dayNum=0; if(cal.get(Calenda...
分类:其他好文   时间:2014-06-28 11:45:35    阅读次数:217
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!