博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1027. Colors in Mars
阅读量:5278 次
发布时间:2019-06-14

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

C++语言:
01
/*
02
+++++++++++++++++++++++++++++++++++++++
03
                author: chm
04
+++++++++++++++++++++++++++++++++++++++
05
*/
06
07
#include <map>
08
#include <set>
09
#include <list>
10
#include <queue>
11
#include <cmath>
12
#include <stack>
13
#include <bitset>
14
#include <cstdio>
15
#include <cctype>
16
#include <string>
17
#include <vector>
18
#include <cassert>
19
#include <cstdlib>
20
#include <cstring>
21
#include <fstream>
22
#include <sstream>
23
#include <iomanip>
24
#include <iostream>
25
#include <algorithm>
26
27
using
namespace
std;
28
29
FILE
*           
fin        
=
stdin;
30
FILE
*           
fout        
=
stdout;
31
const
int       
max_size    
=
10086;
32
void
printnum(
int
x)
33
{
34    
if(
x
<=
9)
35        
printf(
"%d"
,
x);
36    
else
37        
printf(
"%c"
,
x
-
10
+
'A');
38
}
39
void
run(
int
num)
40
{
41    
int
d1
=
num
/
13;
42    
int
d2
=
num
%
13;
43    
printnum(
d1);
44    
printnum(
d2);
45
}
46
#define ONLINE_JUDGE
47
int
main()
48
{
49
#ifndef ONLINE_JUDGE
50    
freopen(
"d:
\\
in.txt"
,
"r"
,
stdin);
51    
freopen(
"d:
\\
out.txt"
,
"w"
,
stdout);
52
#endif
53    
int
red
,
green
,
blue;
54    
scanf(
"%d%d%d"
,
&
red
,
&
green
,
&
blue);
55    
printf(
"#");
56    
run(
red);
57    
run(
green);
58    
run(
blue);
59    
printf(
"
\n
");
60
61
62
63
#ifndef ONLINE_JUDGE
64    
fclose(
stdout);
65    
system(
"start d:
\\
check.exe d:
\\
out.txt d:
\\
ans.txt");
66
#endif
67    
return
0;
68
}

转载于:https://www.cnblogs.com/invisible/archive/2012/03/20/2408769.html

你可能感兴趣的文章
会话控制
查看>>
推荐一款UI设计软件Balsamiq Mockups
查看>>
Linux crontab 命令格式与详细例子
查看>>
百度地图Api进阶教程-地图鼠标左右键操作实例和鼠标样式6.html
查看>>
游标使用
查看>>
LLBL Gen Pro 设计器使用指南
查看>>
SetCapture() & ReleaseCapture() 捕获窗口外的【松开左键事件】: WM_LBUTTONUP
查看>>
Android 设置界面的圆角选项
查看>>
百度地图api服务端根据经纬度得到地址
查看>>
CSS中隐藏内容的3种方法及属性值
查看>>
每天一个linux命令(1):ls命令
查看>>
根据xml生成相应的对象类
查看>>
查看ASP.NET : ViewState
查看>>
Android StageFrightMediaScanner源码解析
查看>>
vue项目中开启Eslint碰到的一些问题及其规范
查看>>
循环队列实现
查看>>
CSS层模型
查看>>
springBoot 项目 jar/war打包 并运行
查看>>
HDU 1501 Zipper
查看>>
打包java程序生成exe
查看>>