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

PROGRAMMING:Output ASCII code

Luz5年前 (2021-05-10)题库386
Input a string of characters (ending with #) and output each character and its ASCII code in turn (excluding #).
###Input format:
A string of characters ends with #.
###Output format:
Output in sample format.
###Input example:
```in
A1?!#
```
###Output example:
```out
A-65
1-49
?- sixty-three
!- thirty-three
```







answer:If there is no answer, please comment