Create an array of integers 10 elements long. ? Loop through this array (using i
ID: 440133 • Letter: C
Question
Create an array of integers 10 elements long. ? Loop through this array (using its length value), assigning a random value between 0 and 100 (inclusive) to each element. Remember: random(100) returns a float and will never return 100.0. Implement your code in such a way that will allow 100 to possibly be assigned to one of the elements of your array. ? Print out a random element of the array. ? Calculate and print the average of all of the numbers in your array. ? Make sure you do not divide an int by an int, or your average will likely be inaccurate.Explanation / Answer
#include using namespace std; void main() { int array1[10]; for(int i=0;iRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.