博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1058. A+B in Hogwarts (20)
阅读量:6803 次
发布时间:2019-06-26

本文共 1296 字,大约阅读时间需要 4 分钟。

题目例如以下:

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)).

Input Specification:

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

Output Specification:

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

Sample Input:
3.2.1 10.16.27
Sample Output:
14.1.28

设计一个结构体存储G、S、K三位。依据题目条件进位就可以。

#include 
#include
using namespace std;struct GSK{ int G; int S; int K; void add(GSK other){ int carry; K += other.K; carry = K / 29; K = K % 29; S = S + carry + other.S; carry = S / 17; S = S % 17; G = G + carry + other.G; }};int main(){ GSK n1,n2; scanf("%d.%d.%d",&n1.G,&n1.S,&n1.K); scanf("%d.%d.%d",&n2.G,&n2.S,&n2.K); n1.add(n2); printf("%d.%d.%d",n1.G,n1.S,n1.K); return 0;}

转载地址:http://bsjwl.baihongyu.com/

你可能感兴趣的文章
MongoDB 游标
查看>>
即将搭载人工智能芯片的华为Mate10,究竟会为业界带来什么?
查看>>
Android实现登录小demo
查看>>
AgentWeb是基于Android WebView一个功能完善小型浏览器库
查看>>
开放数据中心联盟推8个云计算应用模型
查看>>
学习数据分析的“里程碑”是什么?
查看>>
数据科学与DevOps之间的差距还有救吗?
查看>>
信息化一周回顾:金融业大数据十大趋势
查看>>
Http、TCP/IP协议与Socket之间的区别
查看>>
文思海辉:智慧数据避免企业成为大数据时代落伍者
查看>>
迅雷发布“星域CDN” 做条颠覆市场的鲶鱼
查看>>
英国《数字经济法案》
查看>>
Asp.net与Flex交互测试记录
查看>>
运维前线:一线运维专家的运维方法、技巧与实践1.8 运维自动化依赖的团队模型...
查看>>
《树莓派渗透测试实战》——第1章 树莓派和Kali Linux基础知识
查看>>
《圣殿祭司的ASP.NET4.0专家技术手册》----1-7 HTML5与CSS3的支持
查看>>
数据结构之链表
查看>>
八年了必须放手了,我不是你妈妈
查看>>
Eric S. Raymond 五部曲
查看>>
《Ansible权威指南 》一2.7 本章小结
查看>>