首页 > 代码库 > UVa 740 - Baudot Data Communication Code

UVa 740 - Baudot Data Communication Code

题目:现有一种编码,他们在shift键处于按下和升起时,对应两种编码,其中有2个编码对应shift操作。

              给你对应的编码值,求其对应的字符串。

分析:模拟,字符串。简单题,标记shift的升降分类处理即可。

说明:数据量较小,直接扫描查询即可。

#include <iostream>
#include <cstdlib>
#include <string>
#include <cstdio>

using namespace std;

#define down 1
#define up   0

string ushift,dshift,buf;

int code(int space)
{
	int value = http://www.mamicode.com/0;>

UVa 740 - Baudot Data Communication Code