我有一個'For Loop',它有一個變量「itemPrice」,它是一個變量,它是通過用戶輸入接收到的值(「cin> > itemPrice;「代碼也在下面)。 'For Loop'之外的變量名爲'totalPrice',每當從'itemPrice'輸入價格並將其添加到以前的價格時,我都會要求它,等等,直到用戶完成添加爲止。有人知道該怎麼做嗎?我的腦子在油炸,因爲我無法弄清楚如何去做。如何爲每個循環添加變量值? (在C++中。閱讀更多..複雜的Que)
這裏是我的代碼塊我試圖做的:
for(itemNumber = 0; itemNumber < 30; itemNumber++){
cout <<"Please input item price of item of #:"<< itemNumber << endl;
cout <<"(if You are finished enter 00.)"
cin >> itemPrice;
if(itemPrice == 00)
{
break;
}
}
totalPrice //Here I want to add it to this variable for every previous value
//of 'itemPrice' that entered adds it to the previouse value, and
//so on.
它不是功課......這是一種實踐,想法來找我。我需要做到。 @SamVarshavchik –
@SamVarshavchik這與此有關嗎?這個問題很糟糕。 –
@HellzYeahh試過類似'total + = itemPrice'? –