代码搜索:Clock
找到约 10,000 项符合「Clock」的源代码
代码结果 10,000
www.eeworm.com/read/136278/13384007
c clock.c
www.eeworm.com/read/321827/13396962
c clock.c
/***
*clock.c - Contains the clock runtime
*
* Copyright (c) 1987-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* The clock runtime returns the processor time used by
www.eeworm.com/read/321748/13400099
h clock.h
//Clock.h
class Clock
{
public:
Clock() ;
long int gettime() ;
void showtime() ;
void change( long int ) ;
private:
int currenttime ;
int hour ;
int minute ;
int second ;
} ;
www.eeworm.com/read/321748/13400101
cpp clock.cpp
//Clock.cpp
#include"All.h"
Clock::Clock()
{
currenttime = time(0) ;
}
long int Clock::gettime()
{
return currenttime ;
}
void Clock::showtime()
{
int t = time(0) ;
int toda
www.eeworm.com/read/321572/13403112
txt clock.txt
公农历转换
用51 单片机实现公历与农历星期的转换
公历是全世界通用的历法以地球绕太阳的一周为一年一年365 天分为12 个月1 3 5 7 8 10 12 月为
31 天2 月为28 天其余月份为30 天事实上地球绕太阳一周共365 天5 小时48 分46 秒比公历一年多出5 小时48
分46 秒为使年误差不累积公历年用闰年法来消除年误差 由于每年多出5 小时48 分46 秒 ...
www.eeworm.com/read/321313/13409163
class clock.class
www.eeworm.com/read/321128/13411833
asm clock.asm
DATA SEGMENT
INT08_SEG DW ?
INT08_OFF DW ?
COUNT DB 18
THEAD DB 9
DB ?
TIME DB '00:00:00'
TEND DB '$'
MESSAGE DB 'PLEASE INPUT THE BEGIN TIME:',0AH,'$'
DATA
www.eeworm.com/read/320816/13417864
c clock.c
#include
#include
#include // Contains the delay prototype
void main (void)
{
clock_t processor_time;
printf("Processor time consumed %ld\n",
cloc
www.eeworm.com/read/319934/13439212
asm clock.asm
extrn music:far,gensound:far
;******************************************************
;* 堆栈段
.286;******************************************************
STACK_SEG SEGMENT STACK
STACK_BU
www.eeworm.com/read/319934/13439214