Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Practicing With Loops | Introduction to Program Flow
C++ Introduction (copy) 1769617216468njii0h
セクション 4.  6
single

single

bookChallenge: Practicing With Loops

メニューを表示するにはスワイプしてください

タスク

スワイプしてコーディングを開始

In a banking system, every customer receives reward points based on their position in the queue. The reward starts at 100 points and increases by 50 points for every subsequent customer. Write a program to calculate and output the reward for the 15th customer using a loop structure.

Implement a method calculateReward that calculates the reward points for a customer:

  • Declare a variable reward and initialize it with 100.
  • Use a for loop that runs from 1 to the value of customerPosition.
  • On each iteration, add 50 to the reward variable.
  • Return the final value of reward.

Example

calculateReward(1) => 100
calculateReward(2) => 150
calculateReward(15) => 800

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 4.  6
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt