我正在写一个代码,如果你输入你的生日日期和任何其他日期,它会返回你活着的总年数,月数和日数。
Obs.:包括(leap)bissextile岁月。
Obs.2:对于无效日期,输出必须是"数据invalida" (葡萄牙语无效日期)。
Obs。:日期格式为brazillian标准,格式为日/月/年。
8 //第一个输入是您要测试的输入数量。
输入1:29/02/2000
输入2:01/03/2001
输出:1 0 1
输入1:29/02/2000
输入2:28/02/2001
输出:1 0 0
输入1:29/12/2012
输入2:13/01/2013
输出:0 0 15
输入1:27/05/2012
输入2:27/05/2013
输出:1 0 0
输入1:01/01/2012
输入2:05/01/2013
输出:1 0 4
输入1:13/05/1966
输入2:05/02/2015
输出:48 8 23
输入1:29/02/2003
输入2:4/05/2012
输出:数据invalida
输入1:14/13/1995
输入2:7/8/1996
输出:数据invalida
守则:
#include <iostream>
#include <cstdio>
using namespace std;
int verificar(int ano)
{
if (((ano % 4 == 0) && (ano % 100 != 0)) || (ano % 400 == 0))
return 1;
else
return 0;
}
int checkdia(int dia, int mes, int ano){
if (dia>0)
if (((mes==1)||(mes==3)||(mes==5)||(mes==7)||(mes==8)||(mes==10)||(mes==12)) && (dia<=31))
return 1;
else{
if (((mes==4)||(mes==6)||(mes==9)||(mes==11)) && (dia<=30))
return 1;
else{
if ((mes==2) && (dia<=28))
return 1;
else{
if ((((verificar(ano))==true)&&(dia<=29))&&(mes==2))
return 1;
else
return 0;
}
}
}
else
return 0;
}
int checkmes(int mes)
{
if ((mes>0) && (mes<=12))
return 1;
else
return 0;
}
int checkano(int ano)
{
if ((ano>0) && (ano<11000))
return 1;
else
return 0;
}
int main(){
int numerodetestes, mes1, mes2, dia1, dia2, ano1, ano2, teste11, teste12, teste13, teste21, teste22, teste23;
cin>>numerodetestes;
for(int c=0;c<=numerodetestes;c++){
scanf("%d/%d/%d", &dia1, &mes1, &ano1);
scanf("%d/%d/%d", &dia2, &mes2, &ano2);
teste11=checkano(ano1);
teste12=checkdia(dia1,mes1,ano1);
teste13=checkmes(mes1);
teste21=checkano(ano2);
teste22=checkdia(dia2,mes2,ano2);
teste23=checkmes(mes2);
if ((dia1==29)&&(mes1==02))
dia1=28;
if ((teste11+teste12+teste13+teste21+teste22+teste23)==6){
total=((365*(ano2-ano1))+sexto);
//... incomplete part ...//
}
else
cout<<"data invalida"<<endl;
}
return 0;
}
dia:day
mes:month
ano:年
numerodetestes:测试次数
verificar:bissextile的功能
检查(...):检查&#34; X&#34;
的功能teste&#34; XX&#34;:int变量将接收0或1的检查函数。
问题是:我无法弄清楚如何以有条理的方式计算它。
答案 0 :(得分:4)
您应该使用bool
代替int
作为返回值:
bool verificar(int ano)
{
return ((ano % 4 == 0) && (ano % 100 != 0)) || (ano % 400 == 0));
}
您的check
功能也可以大大简化:
bool checkmes(int mes) {
return ( (mes > 0) && (mes <= 12) );
}
bool checkano(int ano) {
return ( (ano > 0) && (ano < 11000) );
}
bool checkdia(int dia, int mes, int ano) {
if(dia < 1 || dia > 31) return false;
if(mes%2 == 0 && dia >30) return false;
if(mes == 2 && dia >28) return verificar(ano);
return true;
}
然后你可以这样写:
bool checkdata(int dia, int mes, int ano) {
return ( checkano(ano) && checkmes(mes) && checkdia(dia, mes, ano) );
}
这将允许你写:
if( !checkdata(dia1,mes1,ano1) || !checkdata(dia2,mes2,ano2) ) {
cout<< "data invalida" <<endl;
}
现在针对主要问题,您可以轻松获得两个日期之间的天数估算,但您无法轻松获得实数,因为日期不过是合乎逻辑的。您必须考虑历史记录中的所有日历修改。
为了便于估算,我首先添加/减去1月1日的偏移日期,然后添加年份差异:
bool isLeap(int year) {
return ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0);
}
int monthLengths[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int monthLength(int month, int year) {
int n = monthLengths[month-1];
if(month == 2 && isLeap(year)) n += 1;
return n;
}
int yearLength(int year) {
return isLeap(year) ? 366 : 365;
}
int nDay = 0; /* day counter */
/* subtract data1 offset to 01/01 */
nDay -= dia1;
for(int i = mes1; i > 1; --i) {
nDay -= monthLength(i - 1, ano1);
}
/* add data2 offset to 01/01 */
nDay += dia2;
for(int i = mes2; i > 1; --i) {
nDay += monthLength(i - 1, ano2);
}
/* add year offset */
for(int i = ano2; i > ano1; --i) {
nDay += yearLength(i);
}
cout << "Difference = " << nDay << " days" << endl;