本文介绍了将月/日转换为一年中的某天的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何将月份和日期转换为一年中的哪一天?
例如,将2月1日转换为32,其中32表示一年中的第32天.
有一个结构需要成为其中的一部分.结构可能是这样的:
How can I convert month and day to the day of the year?
For example, converting FEBRUARY 1 to 32, with 32 meaning the 32nd day of the year.
There is a struct that needs to be a part of it. The struct could be something like this:
struct person {
char name[30]
char month;
int day;
}
推荐答案
这篇关于将月/日转换为一年中的某天的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!