练习专区

今天的一小步就是明天的一大步
Problem 1628 串的处理………………Java
Accepted: 2   Total Submit: 15
Time Limit: 1000ms   Memory Limit: 30720KB
Description
先去除串中的“0”,再将串的空格改成“,”。
Input
输入有若干行,每行一个字符串,串中可以有空格、数字、字母。
Output
每行输出一个处理后的串。
Sample Input
red green yellow
SomeNumber 234 90 67
3 45 0
Sample Output
red,green,yellow
SomeNumber,234,9,67
3,45
Hint
提交     返回