2023 iThome 鐵人賽
分享至
輸入任一數值 total = 0 while(True): input_value = int(input("請輸入數值:")) if input_value < 0: break if input_value % 2 == 0: total += input_value print("加總為:",total)
輸入任一數值
total = 0 while(True): input_value = int(input("請輸入數值:")) if input_value < 0: break if input_value % 2 == 0: total += input_value print("加總為:",total)
數值加總呈現
IT邦幫忙