1037 在霍格沃茨找零钱 (20分)
标签:math div 机制 ati gre 区间 tst view justify
转跳点:??
如果你是哈利·波特迷,你会知道魔法世界有它自己的货币系统 —— 就如海格告诉哈利的:“十七个银西可(Sickle)兑一个加隆(Galleon),二十九个纳特(Knut)兑一个西可,很容易。”现在,给定哈利应付的价钱 P 和他实付的钱 A,你的任务是写一个程序来计算他应该被找的零钱。
输入在 1 行中分别给出 P 和 A,格式为 Galleon.Sickle.Knut
,其间用 1 个空格分隔。这里 Galleon
是 [0, 1] 区间内的整数,Sickle
是 [0, 17) 区间内的整数,Knut
是 [0, 29) 区间内的整数。
在一行中用与输入同样的格式输出哈利应该被找的零钱。如果他没带够钱,那么输出的应该是负数。
10.16.27 14.1.28
3.2.1
14.1.28 10.16.27
-3.2.1
这道题,如果按写一个进制转换的思路会有点麻烦。我AC思路是,把所有货币都转成 Knut ,然后Knut和Knut相减,判断一下符号,取个绝对值,在按货币转换机制输出。
AC代码:
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main(void) 5 { 6 int Galleon, Sickle, Knut; 7 int price = 0, wealth = 0, surplus = 0, Negative = 0; 8 9 //进行Kunt转化 10 scanf("%d.%d.%d", &Galleon, &Sickle, &Knut); 11 price += (Galleon * 17 + Sickle) * 29 + Knut; 12 13 scanf("%d.%d.%d", &Galleon, &Sickle, &Knut); 14 wealth += (Galleon * 17 + Sickle) * 29 + Knut; 15 16 //得出结余 17 surplus = wealth - price; 18 19 if (surplus < 0) 20 { 21 surplus *= -1;//取绝对值 22 Negative = 1;//记录符号 23 } 24 25 //根据货币转换机制输出 26 printf("%s%d.%d.%d", 1 == Negative ? "-" : "", surplus / 29 / 17, surplus / 29 % 17, surplus % 29); 27 28 return 0; 29 }
PAT不易,诸君共勉!
标签:math div 机制 ati gre 区间 tst view justify
原文地址:https://www.cnblogs.com/daker-code/p/12232221.html