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

PROGRAMMING:Programming problem: the standardization of data processing

Luz5年前 (2021-05-10)题库408
In data processing, the input data is not filtered, there are some data that do not meet the requirements
Data processing program is required. Data less than 0 is designated as 0, and data greater than 100 is designated as 100
###Input format:
Input: all elements occupy one line, and the elements are separated by spaces. All elements are integers, and the range is [- 300... 300]
###Output format:
Output: all elements occupy one line, the elements are separated by Western commas, and the Western commas are reserved at the end of the last element
###Input example:
Here is a set of inputs. For example:
```in
-1 10 105
```
###Output example:
The corresponding output is given here. For example:
```out
0,10,100,
```







answer:If there is no answer, please comment