Simulate C ++ running tracker for athletes | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Simulate C ++ running tracker for athletes

The program stores 5 inputs into an array . I need to display the average evertime i take input and store in array before the next input . My code https://code.sololearn.com/cl9QrpAL9CvI/?ref=app Any help would be appreciated.

26th Mar 2019, 11:38 AM
Antony O. Onyango
Antony O. Onyango - avatar
1 Answer
+ 6
Due to how Code Playground works with inputs, you might face issues running the code here when you put cin statements in loops. Just letting you know in advance. From the looks of it, you don't really need variable j and the whole if statement to do the job. #include <iostream> using namespace std; int main() { int hundredM[5]; for (int i=0;i<5;i++){ cout << "enter race time " << i+1 << "\n"; cin >> hundredM [i]; int average =0; for (int x=0;x<i+1;x++) average += hundredM[x]; cout << "average is :" << average/(i+1) << "\n"; } return 0; } Do you want the computed average values to be stored in another array as well?
26th Mar 2019, 12:33 PM
Hatsy Rei
Hatsy Rei - avatar