【1027】Colors in Mars (20 分)

简介: 【1027】Colors in Mars (20 分)【1027】Colors in Mars (20 分)
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
#include<algorithm>  
#include<map>
#include<vector>
#include<queue> 
using namespace std;  
char radix[13]={ //为了建立0~13与0-》9-》A B C 的关系
  '0','1','2','3','4','5','6','7','8','9','A','B','C'
} ;  
int main(){   
  int r,g,b;
  scanf("%d%d%d",&r,&g,&b); //输入三个整数
  printf("#");
  //输出radix[a]与radix[b]
  printf("%c%c",radix[r/13],radix[r%13]);
  printf("%c%c",radix[g/13],radix[g%13]);
  printf("%c%c",radix[b/13],radix[b%13]);
  system("pause");
    return 0;   
}
相关文章
|
8月前
|
数据可视化 Python
python数据可视化 - matplotlib专题:带数据标签的双batch的Bar图绘制示例
python数据可视化 - matplotlib专题:带数据标签的双batch的Bar图绘制示例
88 0
|
5月前
G6VP 与 GraphScope部署问题之在G6VP中选择子图并创建数据集如何解决
G6VP 与 GraphScope部署问题之在G6VP中选择子图并创建数据集如何解决
|
8月前
R语言图形的组合( par(),layout(),par(fig()) )
R语言图形的组合( par(),layout(),par(fig()) )
197 0
135Echarts - 路径图(Use lines to draw 1 million ny streets.)
135Echarts - 路径图(Use lines to draw 1 million ny streets.)
43 0
|
Python
python turtle 八个嵌套雪花(科赫曲线组)
python turtle 八个嵌套雪花(科赫曲线组)
263 0
python turtle 八个嵌套雪花(科赫曲线组)
|
C++
【PAT甲级 - C++题解】1027 Colors in Mars
【PAT甲级 - C++题解】1027 Colors in Mars
74 0
|
搜索推荐
ggplot2|theme主题设置,详解绘图优化-“精雕细琢”
ggplot2|theme主题设置,详解绘图优化-“精雕细琢”
260 0
R-rbind.fill|列数不一致的多个数据集“智能”合并,Get!
R-rbind.fill|列数不一致的多个数据集“智能”合并,Get!
163 0
【1100】Mars Numbers (20 分)
【1100】Mars Numbers (20 分) 【1100】Mars Numbers (20 分)
106 0