c语言计算一个日期的下一天后N天后的日期

2024-03-20 05:08

本文主要是介绍c语言计算一个日期的下一天后N天后的日期,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

http://blog.sina.com.cn/s/blog_6be3556a0101g87u.html


方法一:

---------------------------------------------------------------

#include
#include

struct Date
{
    int year;
 int month;
 int day; 
};

int leap(int year)
{
 if(year%4==0&&year0!=0 || year@0==0)
    return 1;
 else return 0;
   
}

int days(int year ,int month)
{
 if(leap(year)&&month==2)
  return 29;
 if(month==2)
  return 28;
 if(month==4 || month==6 || month==9 || month==11)
     return 30;
 return 31;
}

struct Date nextDay(struct Date d)
{
 if(d.day==days(d.year,d.month))
 {
  d.day = 1;
  d.month=(d.month)+1;
  if(d.month==1) d.year++;
 }
 else d.day++;
 return d; 
}

struct Date nextNDay(struct Date d,int n)
{
 while(n--)
 {
  d = nextDay(d);
 }
 
 return d; 
}

void output(struct Date x)
{
 printf("%d-d-d\n",x.year,x.month,x.day);
}

int main()
{
 struct Date x,y,z;
 
 printf("请输入一个日期,年 月 日:\n");
 scanf("%d%d%d",&x.year,&x.month,&x.day);
 
 printf("当前输入的日期是:\n");
 output(x);
 
 y = nextDay(x);
 printf("它的下一天是:\n");
 output(y);
 
 int n;
 printf("请输入一段时间>(天):");
 scanf("%d",&n);
 z = nextNDay(x,n);
 output(z);
 
 return 0; 
}

---------------------------------------------------------------

方法二:

---------------------------------------------------------------

#include
#include

struct date
{
 int year;         //定义天
 int month;         //定义月
 int day;         //定义天
};

struct date next_day(struct date in);      //声明计算下一天的函数
struct date nextN_day(struct date in, int x);     //声明计算N天后日期的函数
void print(struct date in);         //声明输入日期的函数
int leap(int x);           //声明闰年判断的函数

int main()
{
 struct date d;
 struct date r;
 struct date r1;
 int n;
 int i;
 printf("请输入一个 年 月 日:\n");
 scanf("%d %d %d",&d.year, &d.month, &d.day);
 printf("您输入的日期是:\n");
 print(d);
 
 printf("它的下一天是:\n");
 r = next_day(d);           //计算下一天日期
 print(r);
 
 printf("请输入一个时间长度>(天):");
 scanf("%d",&n);            //接收天数n
 
 printf("经过%d天是:\n",n);
 r1 = nextN_day(d,n);           //计算n天后的日期
 print(r1);
 return 0;
}

int leap(int x)
{
 if(x%4 == 0 && x0 != 0 || x@0 == 0)     //定义函数判断是否为闰年
  return 1;            //闰年返回1
 else
  return 0;            //平年返回0
}
struct date next_day(struct date in)
{
 int m_day;             //定义m_day记录每月天数
 struct date r;
 switch(in.month)
 {
  case 1:
  case 3:
  case 5:
  case 7:
  case 8:
  case 10:
  case 12: m_day = 31; break;
  case 2: {
     if(leap(in.year)) m_day = 29;
     else m_day = 28;
    }
    break;            //二月分别按闰年平年计算
  case 4:
  case 6:
  case 9:
  case 11: m_day = 30; break;         //确定每一个月的天数
 }
 if(in.day+1 <= m_day)
 {
  r.year = in.year;
  r.month = in.month;
  r.day = in.day+1;           //如果输入的日期加1不最后一天,那么日期加1
 }
    if(in.day+1 > m_day && in.month != 12)
 {
  r.year = in.year;
  r.month = in.month+1;
  r.day = 1;              //如果输入的日期是当月最后一天,而且不是12月,则月份加1,日置为1
 }
 if(in.month == 12 && in.day == 31)
 {
  r.year = in.year+1;
  r.month = 1;
  r.day = 1;             //如果输入日期是当年最后一天,则年数加1,月和日置为1
 
 return r;
}

struct date nextN_day(struct date in, int x)
{
 struct date re = in;
 while(x--)
 {
  re = next_day(re);           //通过计算x次下一天的下一天,而最终返回x天后的时间值
 }
 return re;
}
void print(struct date in)
{
 printf("%d-d-d\n",in.year,in.month,in.day);    //定义时间输出格式控制函数
}


这篇关于c语言计算一个日期的下一天后N天后的日期的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/828376

相关文章

科研绘图系列:R语言扩展物种堆积图(Extended Stacked Barplot)

介绍 R语言的扩展物种堆积图是一种数据可视化工具,它不仅展示了物种的堆积结果,还整合了不同样本分组之间的差异性分析结果。这种图形表示方法能够直观地比较不同物种在各个分组中的显著性差异,为研究者提供了一种有效的数据解读方式。 加载R包 knitr::opts_chunk$set(warning = F, message = F)library(tidyverse)library(phyl

透彻!驯服大型语言模型(LLMs)的五种方法,及具体方法选择思路

引言 随着时间的发展,大型语言模型不再停留在演示阶段而是逐步面向生产系统的应用,随着人们期望的不断增加,目标也发生了巨大的变化。在短短的几个月的时间里,人们对大模型的认识已经从对其zero-shot能力感到惊讶,转变为考虑改进模型质量、提高模型可用性。 「大语言模型(LLMs)其实就是利用高容量的模型架构(例如Transformer)对海量的、多种多样的数据分布进行建模得到,它包含了大量的先验

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 1342 欧拉定理(计算几何模板)

题意: 给几个点,把这几个点用直线连起来,求这些直线把平面分成了几个。 解析: 欧拉定理: 顶点数 + 面数 - 边数= 2。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#inc

uva 11178 计算集合模板题

题意: 求三角形行三个角三等分点射线交出的内三角形坐标。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <

XTU 1237 计算几何

题面: Magic Triangle Problem Description: Huangriq is a respectful acmer in ACM team of XTU because he brought the best place in regional contest in history of XTU. Huangriq works in a big compa

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

MiniGPT-3D, 首个高效的3D点云大语言模型,仅需一张RTX3090显卡,训练一天时间,已开源

项目主页:https://tangyuan96.github.io/minigpt_3d_project_page/ 代码:https://github.com/TangYuan96/MiniGPT-3D 论文:https://arxiv.org/pdf/2405.01413 MiniGPT-3D在多个任务上取得了SoTA,被ACM MM2024接收,只拥有47.8M的可训练参数,在一张RTX

如何确定 Go 语言中 HTTP 连接池的最佳参数?

确定 Go 语言中 HTTP 连接池的最佳参数可以通过以下几种方式: 一、分析应用场景和需求 并发请求量: 确定应用程序在特定时间段内可能同时发起的 HTTP 请求数量。如果并发请求量很高,需要设置较大的连接池参数以满足需求。例如,对于一个高并发的 Web 服务,可能同时有数百个请求在处理,此时需要较大的连接池大小。可以通过压力测试工具模拟高并发场景,观察系统在不同并发请求下的性能表现,从而

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,