私は 'Forループ'を変数に "itemPrice"として持っていて、それはユーザーからの入力によって値を受け取る変数です( "cin> > itemPrice; "以下のコードもあります)。 'Forループ'の外の変数は、 'itemPrice'から価格を入力して前の価格に追加するたびに欲しい 'totalPrice'と呼ばれ、ユーザーが追加を完了するまで続きます。誰もそれをする方法を知っていますか?私の脳は揚げる方法が分からないので揚げている。どのようにループごとに変数値を追加するのですか? (C++。Read more ... Compleched 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'のようなことを試しましたか? –