java初学者求助.......
我要做一个商店结帐小程序.......大概过程如下:
Enter a price for item #1 $19.99
Enter a price for item #2: $12.50
Enter a price for item #3: $17.43
Enter a price for item #4: $28.11
Enter a price for item #5: $0
Removing $28.11 from your total. Your total is $49.92
Enter a price for item #4: $78.33
That was $78.33. Your total is $128.25
Enter a price for item #5: $-1
the total is 。。。。。。。
每次输入价格后,进入下一个物品,如果输入0,则是输入错误,然后减掉上一个物品的价格,重新输入价格,如果输入-1,则算出总数,结帐。
我有一点不解,这个应该是用array和loop 结合使用,但是不知道物品的数量,好像不能用for loop
请高手指点应该用哪种loop,怎么解决array 和loop的问题....