Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialChristian Ahm
706 PointsI cant figure out how to set position 3 to lap3. I consider lap3 a string and the array expects a double
Am i supposed to convert lap3 into a double and then put it in the 3rd position?
double[] lapTimes = new double[4];
lapTimes[0] = 2.2;
double[] finalLapTimes = new double[4]{2.2 ,2.3, 2.5,2.8};
1 Answer
andren
28,558 PointsYou seem to have misunderstood the question slightly. It does not want you to assign lap3
to the third item of finalLapTimes
, but rather the opposite. It wants you to create a variable called lap3
that has the third item of finalLapTimes
assigned to it.
Christian Ahm
706 PointsChristian Ahm
706 PointsThank you very much