hdoj 2004 a小于0的情况也要考虑 2005闰年标志 2006

这个博客包含了三个独立的程序段。第一个程序段检查输入的整数a是否在0到100的范围内,否则输出错误提示。第二个程序段处理闰年和非闰年的日期计算,根据输入的年、月、日计算天数。第三个程序段似乎是一个不完整的程序,可能用于比较两个时间点的小时、分钟和秒。
摘要由CSDN通过智能技术生成

#include
#include
#include <string.h>
#include <math.h>
using namespace std;
int main(){
int a;
while (scanf("%d",&a)!=EOF) {
if(a>100||a<0){
printf(“Score is error!\n”);
}

    else{
        if(a>=90&&a<=100){
            printf("A\n");
        }
        if (a>=80&&a<=89){
            printf("B\n");
        }
        if (a>=70&&a<=79){
            printf("C\n");
        }
        if(a>=60&&a<=69){
            printf("D\n");
        }
        if(a>=0&&a<=59){
            printf("E\n");
        }
    }
}

return 0;

}
/*
90~100为A;
80~89为B;
70~79为C;
60~69为D;
0~59为E;
*/
#include
#include
#include <string.h>
#include <math.h>
using namespace std;
int main(){
int data[2][13]={
{0,31,29,31,30,31,30,31,31,30,31,30,31},//闰年
{0,31,28,31,30,31,30,31,31,30,31,30,31}
};
int year,month,day;
while(scanf("%d/%d/%d",&year,&month,&day)!=EOF){
int count=0;
if ((year%100!=0)&&(year%40)||(year%4000)) {
for(int i=1;i<month;i++){
count+=data[0][i];
}
count+=day;
}
else{
for(int i=1;i<month;i++){
count+=data[1][i];
}
count+=day;
}
printf("%d\n",count);
}

return 0;

}

#include
#include
#include <string.h>
#include <math.h>
using namespace std;
int main(){
int n;
scanf("%d",&n);
int ah,am,as,bh,bm,bs;

while (n--) {
    int sumh=0,summ=0,sums=0;
    scanf("%d %d %d %d %d %d",&ah,&am,&as,&bh,&bm,&bs);
    sums=as+bs;
    while(sums>=60) {
        sums-=60;
        summ++;
    }
    summ+=am+bm;
    while(summ>=60) {
        summ-=60;
        sumh++;
    }
    sumh+=ah+bh;
    
    printf("%d %d %d\n",sumh,summ,sums);
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值