时间限制 1000 ms 内存限制 65536 KB 代码长度限制 100 KB 判断程序 Standard (来自 小小)

题目描述

If you are a fan of Harry Potter, you would know the world of magic has its own currency system -- as Hagrid explained it to Harry, "Seventeen silver Sickles to a Galleon and twenty-nine Knuts to a Sickle, it's easy enough."  Your job is to write a program to compute A+B where A and B are given in the standard form of "Galleon.Sickle.Knut" (Galleon is an integer in [0, 107], Sickle is an integer in [0, 17), and Knut is an integer in [0, 29)).

输入描述:

Each input file contains one test case which occupies a line with A and B in the standard form, separated by one space.

输出描述:

For each test case you should output the sum of A and B in one line, with the same format as the input.

输入例子:

3.2.1 10.16.27

输出例子:

14.1.28

题解:把进位转换模拟即可,水题

代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm> using namespace std; int main()
{
int a1,a2,a3,b1,b2,b3;
scanf("%d.%d.%d %d.%d.%d",&a1,&a2,&a3,&b1,&b2,&b3);
int sum1=0,sum2=0,sum3=0; sum1=a3+b3;
sum2=b2+a2;
sum3=a1+b1;
if(sum1>=29)
{
sum1%=29;
sum2++;
}
if(sum2>=17)
{
sum2%=17;
sum3++;
}
printf("%d.%d.%d\n",sum3,sum2,sum1);
return 0;
}

最新文章

  1. android环境配置
  2. 烂泥:ubuntu下配置msmtp+mutt发送邮件
  3. Flex数据绑定陷阱(一)
  4. 【讲义提纲】以一个实战新闻cms增删改查demo为例,给学院国创队伍培训php
  5. 设置阿里云maven中央仓库的settings.xml
  6. mysql 显示行号,以及分组排序
  7. debian7.1 sources.list
  8. jquery 实现邮箱输入自动提示功能:(二)
  9. CentOS 6.4 安装SecurectCRT并破解
  10. mysql sql语句分析
  11. Openstack 的 RPC使用。
  12. docker学习笔记12:Dockerfile 指令 ENTRYPOINT介绍
  13. php人员权限管理(RBAC)
  14. 剑指Offer面试题1
  15. js脚本根据身份证号获取性别、年龄、家庭地址、生日
  16. BZOJ1078: [SCOI2008]斜堆
  17. Cocos2D:塔防游戏制作之旅(十)
  18. windows 和linux 路径解析的区别
  19. Python04(基础语法)
  20. linux杂记

热门文章

  1. CSS-flex|gird 布局
  2. 03-Thread类中的常用方法
  3. 将map中的json转ObjecId
  4. 修改当前项目maven仓库地址
  5. 用Python一键生成炫酷九宫格图片,火了朋友圈
  6. 学会这些Python美图技巧,就等着女朋友夸你吧
  7. Java环境变量配置,HelloWorld。
  8. 「MoreThanJava」Day 6:面向对象进阶——多态
  9. Web前端性能优化,应该怎么做?
  10. 虚拟机安装mysql遇到的坑