代码搜索:UTC
找到约 968 项符合「UTC」的源代码
代码结果 968
www.eeworm.com/read/154805/5633944
zulu
# created by ../tools/tclZIC.tcl - do not edit
if {![info exists TZData(Etc/UTC)]} {
LoadTimeZoneFile Etc/UTC
}
set TZData(:Etc/Zulu) $TZData(:Etc/UTC)
www.eeworm.com/read/154805/5633954
universal
# created by ../tools/tclZIC.tcl - do not edit
if {![info exists TZData(Etc/UTC)]} {
LoadTimeZoneFile Etc/UTC
}
set TZData(:Etc/Universal) $TZData(:Etc/UTC)
www.eeworm.com/read/294252/8244798
c postime.c
#include "includes.h"
/* Number of days into the year at the start of each month (ignoring leap
years). */
static int doy[12] = {0,31,59,90,120,151,181,212,243,273,304,334};
/************
www.eeworm.com/read/142871/12912268
txt !readme.txt
【关于幻方】
大概很多朋友还不知道偶数阶幻方也是存在的,我曾经在好几个论坛上看见过有人问这个问题,这个程序会给你一个解答的方案。
幻方这个东东是一个世界性的数学难题,据说中国现代的研究水平居于世界前列,但是我不知道有什么实际的应用价值,这个平面的一次幻方程序给大家玩玩。
这个程序的C版本(我整理以前的)可能在CSDN上发过,我记不清楚了。
【文件】
MagicSquareCalc-C ...
www.eeworm.com/read/438211/7734630
h dl_time.h
/******************************************************************************/
/* */
/* Copyright (C) 2004-2007 Oscar San
www.eeworm.com/read/131315/5934355
southamerica
# @(#)southamerica 4.3
# From Guy Harris:
# From Official Airline Guide - Worldwide Edition (1987). Countries not
# listed here do not observe DST, according to the OAG. Time zone names
# are pure
www.eeworm.com/read/398163/6291550
c julian_to_mjd.c
#include "utc_time.h"
double julian_to_mjd(jd)
double jd;
{
return(jd - 2400000.5);
}
www.eeworm.com/read/398163/6291576
c mjd_to_julian.c
#include "utc_time.h"
double mjd_to_julian(mjd)
double mjd;
{
return(mjd + 2400000.5);
}