PAT 甲级 1027 Colors in Mars (20 分)
1027 Colors in Mars (20 分)
People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, where the first 2 digits are for Red, the middle 2 digits for Green, and the last 2 digits for Blue. The only difference is that they use radix 13 (0-9 and A-C) instead of 16. Now given a color in three decimal numbers (each between 0 and 168), you are supposed to output their Mars RGB values.
Input Specification:
Each input file contains one test case which occupies a line containing the three decimal color values.
Output Specification:
For each test case you should output the Mars RGB value in the following format: first output #, then followed by a 6-digit number where all the English characters must be upper-cased. If a single color is only 1-digit long, you must print a 0 to its left.
Sample Input:
15 43 71
Sample Output:
#123456
 #include<iostream>
 using namespace std;
 char num[] = {'','','','','','','','','','','A','B','C'};
 void deal(int oct)
 {
   cout<<num[oct/]<<num[oct%];
 }
 int main()
 {
   int R,G,B;
   cin>>R>>G>>B;
   cout<<'#';
   deal(R);
   deal(G);
   deal(B);
   return ;
 }
PAT 甲级 1027 Colors in Mars (20 分)的更多相关文章
- PAT 甲级 1027 Colors in Mars (20 分)(简单,进制转换)
		1027 Colors in Mars (20 分) People in Mars represent the colors in their computers in a similar way ... 
- PAT Advanced 1027 Colors in Mars (20 分)
		People in Mars represent the colors in their computers in a similar way as the Earth people. That is ... 
- PAT (Advanced Level) Practice 1027 Colors in Mars (20 分) 凌宸1642
		PAT (Advanced Level) Practice 1027 Colors in Mars (20 分) 凌宸1642 题目描述: People in Mars represent the c ... 
- PAT甲级——1027 Colors in Mars
		1027 Colors in Mars People in Mars represent the colors in their computers in a similar way as the E ... 
- 【PAT甲级】1027 Colors in Mars (20 分)
		题意: 输入三个范围为0~168的整数,将它们从十三进制转化为十进制然后前缀#输出. AAAAAccepted code: #define HAVE_STRUCT_TIMESPEC #include& ... 
- PAT (Advanced Level) Practice 1027 Colors in Mars (20 分)
		People in Mars represent the colors in their computers in a similar way as the Earth people. That is ... 
- PAT 甲级 1027 Colors in Mars
		https://pintia.cn/problem-sets/994805342720868352/problems/994805470349344768 People in Mars represe ... 
- 1027 Colors in Mars (20 分)
		People in Mars represent the colors in their computers in a similar way as the Earth people. That is ... 
- PAT甲级:1152 Google Recruitment (20分)
		PAT甲级:1152 Google Recruitment (20分) 题干 In July 2004, Google posted on a giant billboard along Highwa ... 
随机推荐
- nio 序列化
			1.序列化 public class SerializeUtils<T extends Serializable> { public byte[] serialize(T t) { byt ... 
- vue2.0 导出Excel表格数据
			1.安装三个依赖包 npm install -S file-saver npm install -S xlsx npm install -D script-loader 2.在项目中创建一个文件夹(比 ... 
- sql存储过程编程带事务
			CREATE PROCEDURE [dbo].[存储过程名字] @错误参数_ErrorCode int output, @参数1 int, @参数2 varchar(20), @参数3 varchar ... 
- 架构之路:nginx与IIS服务器搭建集群实现负载均衡(二)
			[前言] 在<架构之路:nginx与IIS服务器搭建集群实现负载均衡(一)>中小编简单的讲解了Nginx的原理!俗话说:光说不练假把式.接下来,小编就和大家一起来做个小Demo来体会一下N ... 
- php intval 两位小数乘以100后结果少1
			价格处理的时候往往是两位小数需要换算成分,如:16.33元换算为1633分,直接乘以100也就行了的,但是又使用了一个转换为整数类型的函数intval() 这下子结果就不对了,如图: 结果: 可以 ... 
- 基于lnmp环境安装Discuz
			安装环境 Linux:CentOS Linux release 7.5.1804 (Core) nginx:1.14.2 php-fpm:5.4.16 mariadb-server:5.5.60 基本 ... 
- 二十三. Python基础(23)--经典类和新式类
			二十三. Python基础(23)--经典类和新式类 ●知识框架 ●接口类&抽象类的实现 # 接口类&抽象类的实现 #①抛出异常法 class Parent(object): ... 
- mybatis foreach 遍历list中的坑
			将jdbc改写为mybatis时,传入的条件为list使用到的标签是<where> .<choose>.<when>.<if>.<foreach& ... 
- Problem B: 平面上的点和线——Point类、Line类 (II)
			Description 在数学上,平面直角坐标系上的点用X轴和Y轴上的两个坐标值唯一确定,两点确定一条线段.现在我们封装一个“Point类”和“Line类”来实现平面上的点的操作. 根据“append ... 
- git的基本用法——我的日常使用
			git的基本用法 一,前言 网上有太多关于git的用法说明,而我看得云里雾里,可能是本人比较愚笨.平常时间老问别人又觉得很不好意思,估计大多的同学们都是自己解决.后来我想到了买一本书,淘宝上git书籍 ... 
