代码搜索:WeekDay
找到约 663 项符合「WeekDay」的源代码
代码结果 663
www.eeworm.com/read/384084/8900987
cpp c11.cpp
// c11.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
int FirstDayOfYear( int y );
int DaysOfMonth( int m );
www.eeworm.com/read/382954/8985647
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/183833/9135306
cpp 打印年历.cpp
//-----------------------------
#include
#include //其文件中包含了setw()函数的原型
#include
//-----------------------------
int FirstDayOfYear(int y);
int DaysOfMonth(int
www.eeworm.com/read/378183/9244439
dat vb_fun120b.dat
语法
----
WeekdayName(weekday, abbreviate, firstdayofweek)
WeekdayName函数语法有如下几部分:
部分 描述
weekday 必需的.数字值,表示一星期中的某天.该数字值要依赖于firstdayofweek设置中的设置值来决定.
abbreviate 可选的.
www.eeworm.com/read/180019/9322532
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("请输入年份:")