2017-10-05 16 views
0

私は、顧客に購入したいアイテムの数を入力するようにプログラムを作ろうとしています。そのプログラムは、小計と合計税金を税金で求めます。私はwhileループを追加する方法を混乱させるので、ユーザーが置くアイテムの数に応じてアイテムの価格を尋ね続けます。その後、すべてのアイテムを一緒に追加します。Python - Whileループ

答えて

0

あなたが試したものとどこに止まっているのかを追加する必要があります。ここから始まる疑似コードがあります。

read the number of items as num 
initialise total to zero 
while num > 0: 
    read the price of the each item as price 
    calculate the tax and add it to price 
    add the taxed price of each item to total 
    decrement num 
print sum