代码搜索:DAYS
找到约 2,754 项符合「DAYS」的源代码
代码结果 2,754
www.eeworm.com/read/160839/10491848
class days.class
www.eeworm.com/read/277457/10637675
cpp days.cpp
#include
using namespace std;
int main()
{
int days;
days = 365;
cout
www.eeworm.com/read/435623/7789035
java days.java
package javaobj_task1;
public class Days {
public static void days(String args[]){
}
}
www.eeworm.com/read/321827/13397713
c days.c
/***
*days.c - static arrays with days from beg of year for each month
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* contains static arrays u
www.eeworm.com/read/128030/14318395
cpp days.cpp
// days.cpp
// shows days from start of year to date specified
#include
using namespace std;
int main()
{
int month, day, total_days;
int days_per_month[12] = { 31, 28, 31
www.eeworm.com/read/208657/15239789
m days.m
function d = days(t1,t2)
%DAYS Convert any time representation to a DAYS scalar value.
% MATLAB works with three different representations of time.
% DAYS scalar 728431.75
% DATE
www.eeworm.com/read/205778/15307207
txt days.txt
main()
{
int day,month,year,sum,leap;
printf("\nplease input year,month,day\n");
scanf("%d,%d,%d",&year,&month,&day);
switch(month)/*先计算某月以前月份的总天数*/
{
case 1:sum=0;break;
case 2:sum=31;break