1058 A+B in Hogwarts (20 分)难度: 简单 / 知识点: 模拟

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1058 A+B in Hogwarts (20 分)难度: 简单 / 知识点: 模拟相关的知识,希望对你有一定的参考价值。


https://pintia.cn/problem-sets/994805342720868352/problems/994805416519647232

#include<bits/stdc++.h>
using namespace std;
int main(void)
{
    int a,b,c,a1,b1,c1;
    scanf("%d.%d.%d %d.%d.%d",&a,&b,&c,&a1,&b1,&c1);
    int ans1,ans2,ans3;
    ans2=b+b1+(c+c1)/29;
    ans3=(c+c1)%29;
    ans1=a+a1+ans2/17;
    ans2%=17;
    printf("%d.%d.%d",ans1,ans2,ans3);
    return 0;
}

以上是关于1058 A+B in Hogwarts (20 分)难度: 简单 / 知识点: 模拟的主要内容,如果未能解决你的问题,请参考以下文章

1058. A+B in Hogwarts (20)

1058. A+B in Hogwarts (20)

pat 1058 A+B in Hogwarts(20 分)

1058 A+B in Hogwarts (20 分)

1058 A+B in Hogwarts (20分)(水)

PAT 甲级 1058 A+B in Hogwarts (20 分) (简单题)