发布网友 发布时间:2022-03-03 13:04
我来回答
共1个回答
热心网友 时间:2022-03-03 14:33
start_i = 5result = 1while(start_i<=500): if start_i != 99: result = result * start_i start_i = start_i + 1print(result)