【PTA】- 1058 A+B in Hogwarts (20 分)

題目鏈接: https://pintia.cn/problem-sets/994805342720868352/problems/994805416519647232

知識點: 簡單模擬

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <vector>
#include <map>
using namespace std;
#define inf 0x3f3f3f3f
int main(int argc, const char **argv)
{
    int a1, b1, c1, a2, b2, c2;
    scanf("%d.%d.%d %d.%d.%d", &a1, &b1, &c1, &a2, &b2, &c2);
    int sum1, sum2, sum3;
    int carray1, carray2;
    if (c2 + c1 >= 29)
    {
        sum3 = (c1 + c2) % 29;
        carray1 = (c1 + c2) / 29;
    }
    else
    {
        sum3 = (c1 + c2);
        carray1 = 0;
    }
    if (carray1 + b1 + b2 >= 17)
    {
        sum2 = (b1 + b2 + carray1) % 17;
        carray2 = (b1 + b2 + carray1) / 17;
    }
    else
    {
        sum2 = (b1 + b2 + carray1);
        carray2 = 0;
    }
    sum1 = carray2 + a1 + a2;
    printf("%d.%d.%d\n", sum1, sum2, sum3);

    return 0;
}

 

發佈了77 篇原創文章 · 獲贊 23 · 訪問量 6萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章