-->
当前位置:首页 > 题库

PROGRAMMING:Automobile Age

Luz5年前 (2021-05-10)题库421
###Task description
```
It is said that you can know the location of the vehicle by looking at the license plate. The basic rules for the location of the license plate in Heilongjiang Province are as follows:
Black A: Harbin
Black B: Qiqihar
Black C: Mudanjiang
Black D: Jiamusi
Black e: Daqing
Black F: Yichun
Black G: Jixi
Black H: Hegang
Black J: Shuangyashan
Black K: Qitaihe
Hei L: Songhua River area
Black M: Suihua City
Hei n: Heihe City
Black P: Daxinganling area
Black R: farming system
When you see the license plate, can you tell exactly where it belongs?
```
###Input format:
A license plate number, such as black a36q61, the test data ensure that all license plates start with black characters. Because different systems have different mechanisms for Chinese character processing, the Chinese character black in the test data is replaced by two "-".
###Output format:
Output the Pinyin of the region where the license plate belongs, with the first letter capitalized. If the region is not recognized, output: noname.
Output the result of the formula.
###Input example:
```in
--H54250
```
###Output example:
```out
Hegang
```
###Input example:
```in
--P54250
```
###Output example:
```out
Daxinganlingdiqu
```
###Input example:
```in
--RJ5942
```
###Output example:
```out
Nongkenxitong
```
###Input example:
```in
--X12345
```
###Output example:
```out
Noname
```







answer:If there is no answer, please comment