Question

C# Visual Studios HelloWorld For this assignment, you'll work with first creating an array and populating...

C# Visual Studios HelloWorld

For this assignment, you'll work with first creating an array and populating it's values. Then, we'll use the values in the array to calculate the average. Since it's common for an average to result in numbers with decimal points, the array you create should be of type double[]. This program will need to use dynamic input from the user so perform the following steps:

  1. Ask the user how many numbers need to be added. Use this value to create a new array using the size entered from the user.
  2. Adding a looping structure to capture the numbers from the user to populate each position in the array you've created.
  3. Calculate the average and print the result.
    • Remember average is sum / number of items.
    • Remember that for the number of items you can use the Length property on your array variable.

Sample

How many numbers would you like to add? 5
Enter a number: 4
Enter a number: 9
Enter a number: 16
Enter a number: 25
Enter a number: 36
Average: 18
0 0
Add a comment Improve this question Transcribed image text
Answer #1

6 7 8- 9 1 using System; 2 - class HelloWorld { 3 static void Main() { 4 Console.Write(How many numbers would you like to ad

6 7 9 } } main.cs 1 using System; 2. class HelloWorld { 3 static void Main() { 4 Console.Write(How many numbers would you li

#if you have any doubt or more information needed comment below..i will respond as possible as soon..thanks..

Add a comment
Know the answer?
Add Answer to:
C# Visual Studios HelloWorld For this assignment, you'll work with first creating an array and populating...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • C# Visual Studios HelloWorld For this assignment, you'll be given two arrays where one represents the...

    C# Visual Studios HelloWorld For this assignment, you'll be given two arrays where one represents the item numbers and the other array represents the price of the item. For instance, index 3 in the items array will have the corresponding price for the item in index 3 of the price array. You'll ask the user which item to lookup, search the array for the item, and print the price when the item is found. When the item was not found,...

  • C# Visual Studios HelloWorld For this program, you will need to sum the values of an...

    C# Visual Studios HelloWorld For this program, you will need to sum the values of an array and print the sum. A numbers array of integers will be provided for you in the program file. Since the array will already be populated with values, all your program needs to do is calculate the sum of all the values and print the output. Sample output Sum: 215

  • code must be c++ thank you This assignment is about array operations. You need to count...

    code must be c++ thank you This assignment is about array operations. You need to count a specific items in an array. Steps to follow are here: • Create an array with 1000 items and fill it with random numbers from the range of -100, 100 (including - 100 and 100). . In your program asks user to enter a number, K. • Search this number and print the frequency (how many) of this K is found in the array...

  • This assignment is about array operations. You need to count a specific items in an array....

    This assignment is about array operations. You need to count a specific items in an array. Steps to follow are here: • Create an array with 1000 items and fill it with random numbers from the range of -100, 100 (including - 100 and 100). . In your program asks user to enter a number, K. • Search this number and print the frequency (how many) of this K is found in the array. • Ask another number, and so...

  • write c++ program This assignment is about array operations. You need to count a specific items...

    write c++ program This assignment is about array operations. You need to count a specific items in an array. Steps to follow are here: . Create an array with 1000 items and fill it with random numbers from the range of -100, 100 (including -100 and 100). In your program asks user to enter a number, K. Search this number and print the frequency (how many) of this K is found in the array. • Ask another number, and so...

  • C++ This week, you are to create two separate programs, first using a simple array and...

    C++ This week, you are to create two separate programs, first using a simple array and the second using a 2D-array (matrix). [Part 1] Write a program that accepts exactly ten (10) integer numbers from the user and stores them in an array. In a separate for-loop, the program then goes through the elements in the array to print back: (i) The sum of the 10 numbers, (ii) the minimum value from the 10 numbers, and (iii) the maximum value...

  • Create an application in Visual Studios 2015 that displays the result of dividing the larger of...

    Create an application in Visual Studios 2015 that displays the result of dividing the larger of two numbers entered by the user by the smaller one. You can not label entries of one must the larger on the user interface. You must use your known logic to determine which number is larger of the two entered by the user to perform your calculations. ¢ If the smaller number is 0, the application should display the message "Cannot divide by 0"...

  • COP2221 - Intermediate C++ Programming Module #6 Assignment One 20 points This assignment refers to Learning...

    COP2221 - Intermediate C++ Programming Module #6 Assignment One 20 points This assignment refers to Learning Outcome #2: Create and utilize arrays to store lists of related data Programming Problem You have been hired to create a C++ program to simulate the lottery. Your program allows users to see how often their lottery number choices match a randomly generated set of numbers used to pick lottery winners. The company, "How Lucky Are You?, Inc." wants a modular, professional and user-friendly...

  • CT143 : Intro to C++ Lab 15: Array Practice Instructions Complete each of the C++ activities...

    CT143 : Intro to C++ Lab 15: Array Practice Instructions Complete each of the C++ activities described below in a single source file Label each activity with its own heading using comments. Activities: 1) Favorite numbers a. Declare and initialize an array of 10 integers as a single statement using a name of your choice. b. Output the result of adding the 1st and 5th members of the array. C. Subtract the 4h member from 3 times the 10th member...

  • Write C++ program (studentsGpa.cpp) uses dynamic allocation to create an array of strings. It asks the...

    Write C++ program (studentsGpa.cpp) uses dynamic allocation to create an array of strings. It asks the user to enter a number and based on the entered number it allocates the array size. Then based on that number it asks the user that many times to enter student’s names. What you need to do:  Add another array of doubles to store the gpa of each student as you enter them  You need to display both the student’s name and...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT