代码搜索:WeekDay
找到约 663 项符合「WeekDay」的源代码
代码结果 663
www.eeworm.com/read/480529/6665827
txt 10-35.txt
%例10-35 MATLAB中显示当前日期和时间。
%ATLAB 7.1中输入上述时间函数,并按Enter键确认。
>> T=clock
>>
%以上是以向量形式表示的本书这一部分编写时所处的时间,即2004年9月16号14时58分第9.2秒。
>>date
%以上是编写本身这一部分的日期。
>> now
%以上是以双精度数据表示的当前的日期和时间。
>>calen
www.eeworm.com/read/265100/11282975
htm 3-20.htm
document.write("现在时间为:" & Now() & "")
document.write("日期为:" & Date() & "")
document.write("时间为:" & Time() & "")
document.write("今天星期 " & WeekDay(Date()) -1
www.eeworm.com/read/263812/11341275
frm form1.frm
VERSION 5.00
Begin VB.Form frmDateFunctions
Caption = "Demonstrating Date Functions"
ClientHeight = 2190
ClientLeft = 60
ClientTop = 345
ClientWidth
www.eeworm.com/read/263409/11363811
cs enumapp.cs
using System;
class EnumApp
{
// 声明一个枚举类型Weekday,基类为int,访问范围为public
public enum Weekday
{
Sun, Mon, Tue, Wed, Thu, Fri, Sat
}
public static void Main()
www.eeworm.com/read/260947/11685121
cpp 4_32.cpp
# include
# include
void printmonth(int m);
void printhead(int m);
int daysofmonth(int m);
int firstday(int y);
int year,weekday;
void main()
{
int i;
printf("请输入年份:")