pat1027. Colors in Mars (20)

Source: Internet
Author: User

1027. Colors in Mars (20) time limit MS Memory limit 65536 KB code length limit 16000 B award Program StandardAuthor Chen, Yue

People in Mars represent the colors in their computers in a similar as the Earth people. That was, a color is represented by a 6-digit number, where the first 2 digits was for Red, and the middle 2 digits for Green, and the last 2 digits for Blue. The only difference are that they use radix (0-9 and A-c) instead of 16. Now given a-color in three decimal numbers (each between 0 and 168), you is supposed to output their Mars RGB values.

Input

Each of the input file contains one test case which occupies a line containing the three decimal color values.

Output

For each test case you should output the Mars RGB value in the following Format:first output "#" and then followed by a 6-di Git number where all the 中文版 characters must be upper-cased. If a single color was only 1-digit long and you must print a "0" to the left.

Sample Input
15 43 71
Sample Output
#123456

1#include <cstdio>2#include <algorithm>3#include <iostream>4#include <cstring>5#include <queue>6#include <vector>7#include <cmath>8 using namespacestd;9 Charnum[ -]={'0','1','2','3','4','5','6','7','8','9','A','B','C'};Ten intMain () { One     intr,g,b; Ascanf" %d%d%d",&r,&g,&b); -cout<<"#"; -     //123456 " thecout<<num[r/ -]<<num[r% -]<<num[g/ -]<<num[g% -]<<num[b/ -]<<num[b% -]<<Endl; -     return 0; -}

pat1027. Colors in Mars (20)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.