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 trialAnkit Biswas
280 PointsAverage
Averager Repeatedly prompt the user for numbers. Add all of the numbers together. When the user types in “done”, print the average of all of the numbers by dividing the total by the number of numbers entered.?
treehouse:~/workspace$ mcs Program.cs && mono Program.exe Enter a number or type "done" to see the average: 5.5 Enter a number or type "done" to see the average: bogus That is not valid input. Enter a number or type "done" to see the average: 4.2 Enter a number or type "done" to see the average: 99 Enter a number or type "done" to see the average: done Average: 36.2333333333333 Please Tell me the write code for it?