PAT 天梯赛 L1-007. 念数字 【水】
题目链接
https://www.patest.cn/contests/gplt/L1-007
AC代码
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <deque>
#include <vector>
#include <queue>
#include <string>
#include <cstring>
#include <map>
#include <stack>
#include <set>
#include <cstdlib>
#include <ctype.h>
#include <numeric>
#include <sstream>
using namespace std;
typedef long long LL;
const double PI = 3.14159265358979323846264338327;
const double E = 2.718281828459;
const double eps = 1e-6;
const int MAXN = 0x3f3f3f3f;
const int MINN = 0xc0c0c0c0;
const int maxn = 1e5 + 5;
const int MOD = 1e9 + 7;
int main()
{
    map <char, string> m;
    m.clear();
    m['0'] = "ling" ;
    m['1'] = "yi";
    m['2'] = "er";
    m['3'] = "san";
    m['4'] = "si";
    m['5'] = "wu";
    m['6'] = "liu";
    m['7'] = "qi";
    m['8'] = "ba";
    m['9'] = "jiu";
    m['-'] = "fu";
    string s;
    cin >> s;
    int len = s.size();
    for (int i = 0; i < len; i++)
    {
        if (i)
            cout << " ";
        cout << m[s[i]];
    }
    cout << endl;
}PAT 天梯赛 L1-007. 念数字 【水】的更多相关文章
- PAT 天梯赛 L1-047. 装睡 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-047 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-042. 日期格式化 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-042 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-041. 寻找250 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-041 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-022. 奇偶分家 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-022 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-016. 查验身份证 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-016 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-014. 简单题 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-014 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-012. 计算指数 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-012 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-010. 比较大小 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-010 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-004. 计算摄氏温度 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-004 AC代码 #include <iostream> #include <cstdio&g ... 
- PAT 天梯赛 L1-028. 判断素数 【水】
		题目链接 https://www.patest.cn/contests/gplt/L1-028 AC代码 #include <iostream> #include <cstdio&g ... 
随机推荐
- PHP  表格  post  提交   接受
			<form action="<?php echo site_url('home/order/sned_order'); ?>" method="post ... 
- Hadoop分布式文件系统--HDFS结构分析
			转自:http://blog.csdn.net/androidlushangderen/article/details/47377543 HDFS系列:http://blog.csdn.net/And ... 
- 谈谈对XML的理解?说明Web应用中Web.xml文件的作用?
			谈谈对XML的理解?说明Web应用中Web.xml文件的作用? 解答:XML(Extensible Markup Language)即可扩展标记语言,它与HTML一样,都是SGML(Standard ... 
- XMLHttpRequest的withCredentials属性
			最近对接第三方网站出现一下错误:Access to XMLHttpRequest at 'https://third.site.com/request_url' from origin 'https: ... 
- 如何正确使用Google搜索
			“” 双引号表示完全匹配,结果中必须出现与搜索文本完全相同的内容 A -B 搜索包含A但不包含B的结果(请注意A后面的空格不能省略) filetype 搜索对应类型的文件.例如:中国防火墙 filet ... 
- linux jdk 6 版本下载
			http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-41940 ... 
- linux ftp 上传与下载命令解析
			month=`date -d "last month" +"%Y%m"` year=`date +"%Y"` rm /home/yourDi ... 
- Android性能测试摘入(TestHome)
			Android性能测试: 客户端性能测试 服务端性能测试 客户端性能测试: 1.ROM版本的性能测试(即手机的不同操作系统):关注功耗测试 2.应用的性能测 ... 
- Word Formation
			构词 Word Formation 1.派生Derivation 2.合成Compounding 3.截短Clipping 4.混合Blending 1派生Derivation 1).前缀 除少数英语 ... 
- runtime(二)
			前言 上一篇中我们大致的了解了runtime的一些基本概念,这一篇我们一起来看看如何使用它. 3.如何使用runtime. 3.1 方法交换 举一个老生常谈的例子.当你接手一个新的项目,需要查看这个程 ... 
