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

PROGRAMMING:Removes all characters in a string with even subscripts

Luz5年前 (2021-05-10)题库357
Delete all the characters with even subscript in a string and output the remaining characters into a new string.
###Input format:
Enter a string less than 20 in length on one line. Do not use line breaks, spaces, tabs in strings.
###Output format:
Output the changed string directly.
###Input example:
```in
asdfghj
```
###Output example:
```out
sfh
```






answer:If there is no answer, please comment