代码搜索:WeekDay
找到约 663 项符合「WeekDay」的源代码
代码结果 663
www.eeworm.com/read/134951/13969606
cpp ex3_2dlg.cpp
// Ex3_2Dlg.cpp : implementation file
//
#include "stdafx.h"
#include "Ex3_2.h"
#include "Ex3_2Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE_
www.eeworm.com/read/243996/12900987
c 2410rtc.c
//====================================================================
// File Name : 2410RTC.c
// Function : S3C2410 RTC Test Program
// Program : Shin, On Pil (SOP)
// Date : May 06, 200
www.eeworm.com/read/324857/13239822
v lut_ym2w.v
//Look up table of Year-Month to Weekday
module LUT_YM2W(Year,Mon,IniWeekday);
input [3:0] Year,Mon;
output [1:0]IniWeekday;
parameter JAN=5
parameter FEB=1
parameter MAR=2
parameter AP
www.eeworm.com/read/231246/14243230
c main.c
#include "def.h"
#include "option.h"
#include "2410addr.h"
#include "2410lib.h"
#include "2410slib.h"
#include "timer.h"
#include "mmu.h"
#define FCLK 200000000
#define HCLK (FCLK/2)
#define
www.eeworm.com/read/211657/15175950
cs class1.cs
using System;
namespace switch_demo
{
///
/// Class1 的摘要说明。
///
class Class1
{
///
/// 应用程序的主入口点。
///
[STAThread]
static void Mai
www.eeworm.com/read/173738/9637730
v lut_ym2w.v
//Look up table of Year-Month to Weekday
module LUT_YM2W(Year,Mon,IniWeekday);
input [3:0] Year,Mon;
output [1:0]IniWeekday;
parameter JAN=5
parameter FEB=1
parameter MAR=2
parameter AP
www.eeworm.com/read/324857/13239831
v lut_ymd2w.v
//Look up table of Year-Month to Weekday
module LUT_YMD2W(YMD,Weekday);
input [23:0] YMD;
output [2:0]Weekday;
reg [2:0]Weekday;
always @(YMD)
case(YMD)
24'h 000101 :Weekday= 6 ;
24'h
www.eeworm.com/read/173738/9637733
v lut_ymd2w.v
//Look up table of Year-Month to Weekday
module LUT_YMD2W(YMD,Weekday);
input [23:0] YMD;
output [2:0]Weekday;
reg [2:0]Weekday;
always @(YMD)
case(YMD)
24'h 000101 :Weekday= 6 ;
24'h
www.eeworm.com/read/421635/10722784
cpp vc0207.cpp
//example 2-7
#include
#define YES 1
#define NO 0
int isleap(int year)
{
int leap=NO;
if(year%4==0&&year%100!=0||year%400==0)
leap=YES;
return leap;
}
int week_of_newy
www.eeworm.com/read/455384/7372690
c xtest16_4.c
/* ========================================================================== */
/* Xtest16_4.c : Digital Clock with Calendar on Graphic LCD by DS1307 RTC */
/* =================================