题解列表

筛选

话费计算-题解(Python代码)

摘要:第一次发啊,请谅解 公式如下 ```katex a = 50 + m * 0.4 ``` 根据公式写出代码 ```python m = input() a = 50 + int(m……