【C#每日一题】输入任意一个日期显示出它是当年的第几天?星期几?并打印出当月的日历

简介: 作业1:输入任意一个日期显示出它是当年的第几天?星期几?并打印出当月的日历运行结果:上代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { .

在这里插入图片描述

作业1:输入任意一个日期显示出它是当年的第几天?星期几?并打印出当月的日历

运行结果:
在这里插入图片描述

上代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
           // string aa= "2021-05-24";
            DateTime sj = new DateTime(2022,05,24);
            int days = (int)sj.DayOfYear;
            int week = (int)sj.DayOfWeek;
            int month = (int)sj.Month;
            int year = (int)sj.Year;
            Console.Write("该日期是当年中的:" + days + "天\n");
            Console.Write("星期:" + week + "\n");
            int last = (int)DateTime.DaysInMonth(year, month);
           // Console.Write(last);
            //31天
            Console.Write("星期日 星期一 星期二 星期三 星期四 星期五 星期六\n");
         
            for (int i = 1; i <= last; i++)
            {

                if (i % 7 == 0)
                {
                    Console.Write(" {0:00}  \n", i);
                }
                else {
                    Console.Write("   {0:00}  ", i);
                }
            }
            Console.ReadKey();
        }
    }
}
相关文章
|
1月前
|
C#
C# 技巧:如何确定日期时间范围的日周月季度半年
C# 技巧:如何确定日期时间范围的日周月季度半年
31 1
|
6月前
|
存储 安全 Unix
C#.Net筑基-类型系统②常见类型--日期和时间的故事
在System命名空间中,有几种表示日期时间的不可变结构体(Struct):DateTime、DateTimeOffset、TimeSpan、DateOnly和TimeOnly。DateTime包含当前本地或UTC时间,以及最小和最大值;DateTimeOffset增加了时区偏移信息,适合跨时区操作。UTC是世界标准时间,而格林尼治标准时间(GMT)不稳定,已被更精确的UTC取代。DateTimeOffset和DateTime提供了转换为UTC和本地时间的方法,以及各种解析和格式化函数。
|
11月前
|
C#
C# 对于“日期时间(DateTime)“的处理 时间差计算
C# 对于“日期时间(DateTime)“的处理 时间差计算
|
C#
C# 两个DataGridView设置时间范围,开始日期小于结束日期
C# 两个DataGridView设置时间范围,开始日期小于结束日期
108 0
|
小程序 定位技术 C#
C#编程学习(01):北斗时转日历时的小程序
C#编程学习(01):北斗时转日历时的小程序
C#编程学习(01):北斗时转日历时的小程序
|
C#
c#日期格式转换大全
c#日期格式转换大全
122 0
C# 计算两个日期的时间间隔
C# 计算两个日期的时间间隔
654 0
C# string格式的日期时间转为DateTime类型
C# string格式的日期时间转为DateTime类型
389 0
|
JSON C# 数据格式
C# Json处理日期和Table
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.
1001 1
|
C#
各个 C# 版本的主要特性、发布日期和发布方式(C# 1.0 - 7.3)
原文 各个 C# 版本的主要特性、发布日期和发布方式(C# 1.0 - 7.3) 本文收集各个 C# 版本的主要特性、发布日期和发布方式。 C# 8.0 尚在预览版本 C# 7.3 2018 年 5 月 随 Visual Studio 2017 v15.
1888 0