博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
词典 (noi OpenJudge)
阅读量:5345 次
发布时间:2019-06-15

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

 

  传送门:

  神奇的STL

 

 

 

#include 
#include
#include
#include
#include
using namespace std;string s, s1, s2, word;map
dic;int main(){ while (getline (cin, s) && s != "") { stringstream sin (s); sin >> s1 >> s2; dic [s2] = s1; } while (cin >> word) { if (dic [word] == "") cout << "eh" << endl; else cout << dic [word] << endl; } return 0;}

 

转载于:https://www.cnblogs.com/ZlycerQan/p/6158314.html

你可能感兴趣的文章
解决响应式布局下兼容性的问题
查看>>
使用DBCP连接池对连接进行管理
查看>>
【洛谷】【堆+模拟】P2278 操作系统
查看>>
hdu3307 欧拉函数
查看>>
Spring Bean InitializingBean和DisposableBean实例
查看>>
[容斥][dp][快速幂] Jzoj P5862 孤独
查看>>
Lucene 学习之二:数值类型的索引和范围查询分析
查看>>
软件开发工作模型
查看>>
Java基础之字符串匹配大全
查看>>
面向对象
查看>>
lintcode83- Single Number II- midium
查看>>
移动端 响应式、自适应、适配 实现方法分析(和其他基础知识拓展)
查看>>
selenium-窗口切换
查看>>
使用vue的v-model自定义 checkbox组件
查看>>
[工具] Sublime Text 使用指南
查看>>
Web服务器的原理
查看>>
常用的107条Javascript
查看>>
#10015 灯泡(无向图连通性+二分)
查看>>
linux设备驱动归纳总结(三):1.字符型设备之设备申请【转】
查看>>
《黑客与画家》 读书笔记
查看>>