NEXTDAY

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "com_time.h"
#include "com_func.h"
/*
 * Definition of leap year:

Rule 1: A year is called leap year if it is divisible by 400.
For example: 1600, 2000 etc leap year while 1500, 1700 are not leap year.
Rule 2: If year is not divisible by 400 as well as 100 but it is divisible by 4 then that year are also leap year.
For example:  2004, 2008, 1012 are leap year.
*/
int isleapyear(int year)
{
    if ((year%400 == 0) || ((year%4 == 0) && (year%100 != 0))) {
        printf("The year:%d is a leap year!\n",year);
        return 1;
    }
    return 0;
}

int istimelegal(int year, int month, int day){
    if(year <= 0 || year >=3000)
    {
        printf("the year is out of range([0-3000]!\n");
        exit(EXIT_FAILURE);
    }else {
        if(isleapyear(year))
        {
            if(month < 1 || month >12)
            {
                printf("The month of the leap year is out of range\n!");
            }else {
                if(month == 2)
                {
                    if(day > 29)
                    {
                        printf("day:%d is out of range",day);
                        exit(EXIT_FAILURE);
                    }
                }
                else{
                    if((day <= 0) || (day > 31))
                    {
                        printf("day:%d is out of range",day);
                        exit(EXIT_FAILURE);
                    }
                }

            }
        }else {//not leap year
            if(month == 2)
            {
                if(day > 28)
                {
                    printf("The month:%d of the year is out of range\n!",month);
                    exit(EXIT_FAILURE);
                }
            }else {
                if((day <= 0) || (day > 31))
                {
                    printf("day:%d is out of range",day);
                    exit(EXIT_FAILURE);
                }

            }

        }
    }
    return 1;

}

//2016-05-02
char *nextday(char *date)
{
    int days[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};
    char str_year[5]={0};
    char str_month[3]={0};
    char str_day[3]={0};
    int year=0;
    int month=0;
    int day=0;
    //strncpy();
    sscanf(date,"%4s-%2s-%2s",str_year,str_month,str_day);
    /*printlog(str_year);
    printlog(str_month);
    printlog(str_day);
    printf("%s-%s,%s%s,%s,%s\n",str_year,str_month,str_day);*/
    year = atoi(str_year);
    month = atoi(str_month);
    day = atoi(str_day);
    //printf("day:%d-%d-%d\n",year, month, day);
    if(isleapyear(year))
    {
        days[2] = 29;
    }
    else {
        days[2] = 28;
    }

    //judge time illegal or not
    istimelegal(year,month,day);
    int i = 0;
    int tmp = 0;
    tmp = month;
    for(i = 1;i < 13;i++)
    {
        if(tmp != i)
        {
            continue;
        }else {
            if(day < days[i])
            {
                printlog("&&&&&&&&&&");
                day++;
            }else if(day == days[i]){
                printlog("0000000");
                month++;
                if(month > 12)
                {
                    printlog("121212122");
                    year++;
                    month %= 12;
                }
                printlog("********");
                day = 1;

            }else {
                printlog("@@@@@@@@@@");
                break;
            }
            /*printlog("&&&&&&&&&&");
            day++;
            printlog("@@@@@@@@@@");*/
        }
    }

    //printf("day:%d-%d-%d\n",year, month, day);
    sprintf(date, "%4d-%0d-%0d", year, month, day);
    //printlog(date);
    //printf("%s\n",date);

    return date;
}---------------------------------------------------------------------------------------+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
int main(int argc, char *argv[])
{
    //char date[]="2016-03-31";
    //char date[]="2016-02-29";
    //char date[]="2016-03-09";
    //char date[]="2016-12-31";

    //char date[]="2015-03-31";
    char date[]="2015-02-29";
    //char date[]="2015-03-09";
    //char date[]="2015-12-31";
    //printf("%d\n",isleapyear(2015));
    
    nextday(date);
    
    printlog(date);
    return 0;
}
时间: 2024-10-11 16:04:16

NEXTDAY的相关文章

软件测试(三)—— 参数化测试用例(Nextday.java)

import static org.junit.Assert.*; import java.lang.reflect.Array; import java.util.Arrays; import java.util.Collection; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameter

linux在shell中获取时间

获得当天的日期 date +%Y-%m-%d 输出: 2011-07-28 将当前日期赋值给DATE变量DATE=$(date +%Y%m%d) 有时候我们需要使用今天之前或者往后的日期,这时可以使用date的 -d参数 获取明天的日期 date -d next-day +%Y%m%d 获取昨天的日期 date -d last-day +%Y%m%d 获取上个月的年和月 date -d last-month +%Y%m 获取下个月的年和月date -d next-month +%Y%m 获取明年

Linux常用命令学习

补充: 管道符号:   | 含义: 命令1 的正确输出作为命令2的输出对象. 格式: 命令1   |  命令2 举例: ls -ctrl |  more 常用命令: netstat   -an    |  grep    ESTABLISHED         查看正在连接的端口 netstat   -an    |   grep   LISTEN find   .    -name   test.txt    |     cat    -n          在当前目录下找到文件名为test.

日期之差

日期之差 问题描述 已知2011年11月11日是星期五,问YYYY年MM月DD日是星期几?注意考虑闰年的情况.尤其是逢百年不闰,逢400年闰的情况. 输入格式 输入只有一行 YYYY MM DD 输出格式 输出只有一行 W 数据规模和约定 1599 <= YYYY <= 2999 1 <= MM <= 12 1 <= DD <= 31,且确保测试样例中YYYY年MM月DD日是一个合理日期 1 <= W <= 7,分别代表周一到周日 样例输入 2011 11

date 命令

在linux环境中,不管是编程还是其他维护,时间是必不可少的,也经常会用到时间的运算,熟练运用date命令来表示自己想要表示的时间,肯定可以给自己的工作带来诸多方便.1.命令格式: date [参数]... [+格式]2.命令功能:date 可以用来显示或设定系统的日期与时间.3.命令参数:必要参数:%H 小时(以00-23来表示). %I 小时(以01-12来表示). %K 小时(以0-23来表示). %l 小时(以0-12来表示). %M 分钟(以00-59来表示). %P AM或PM. %

JavaScript测试代码

<!-- 在谷歌浏览器上的console运行 --> //变量 var netPrice = 8.99; alert(netPrice); //字符串方法 var string1 = "我是字符串的第一部分+"; var string2 = "我是字符串的第二部分"; var longString = string1.concat(string2); alert(longString); var string1 = "The quick bro

linux命令(44):date命令

1.命令格式: date [参数]... [+格式] 2.命令功能: date 可以用来显示或设定系统的日期与时间. 3.命令参数: 必要参数: %H 小时(以00-23来表示). %I 小时(以01-12来表示). %K 小时(以0-23来表示). %l 小时(以0-12来表示). %M 分钟(以00-59来表示). %P AM或PM. %r 时间(含时分秒,小时以12小时AM/PM来表示). %s 总秒数.起算时间为1970-01-01 00:00:00 UTC. %S 秒(以本地的惯用法来

javascript日历插件

最近在尝试着写javascript日历插件,所以也到github上看国外人日历源码,或者国内人写的好点的,也在研究点,虽然看到网上有一大把的日历控件,但是没有几个是自己想要的,虽然效果是实现了,但是看他们的源码,头有点大,所以自己也在研究这方面的东西.周末用了2天来研究别人写的代码 自己也试着做做demo,今天正好基本功能完成了,所以趁着这个机会分享下:我们可以先来看看效果:JSFiddler地址如下: demo链接请点击我 基本的配置如下:    targetCls '',    输入框dom

黑马程序员_java枚举的使用

1. 什么是枚举 所谓枚举是指将变量的值一一列举出来,变量的值只限于列举出来的值的范围内.比如星期,一年中的四季,颜色值等都可以使用枚举进行列举出来. 2. 枚举类的前世今生 在jdk5以前的,要使用枚举那是不可能的,因为那个时候还没有呢,从5之后就有了枚举.其实一个枚举中的实例对象都是被static final 修饰的,因此我们可以使用普通的类进行模拟. // 使用普通类来模拟一个枚举类(类用来描述星期) // 不带抽象方法 public class WeekDay { // 禁止创建对象 p