hdu 2096

Posted 庸人自扰扰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2096相关的知识,希望对你有一定的参考价值。

PS:做不出前面几道题...很不爽..扒拉了几下找了简单题来做....

#include "stdio.h"
int cal(int a);
int main(){
    int a,b,i,T,sum;
    scanf("%d",&T);
    for(i=0;i<T;i++){
            scanf("%d%d",&a,&b);
            if(a>=100) a=a%100;
            if(b>=100) b=b%100;
            sum=a+b;
            if(sum>=100) sum=sum%100;
            printf("%d\n",sum);
        }
        return 0;
}

然后就是,看过大神的代码...其实可以不用判断..每次都取余...

以上是关于hdu 2096的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2096 小明A+B(%的运用)

jQuery应用 代码片段

hdu5802 Windows 10 贪心

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

存个代码,233

HDU3247 Resource Archiver(AC自动机+BFS+DP)