What Does 'N' Represent in this Programming Question?

  • Thread starter Thread starter Iron_Brute
  • Start date Start date
  • Tags Tags
    Confusion Program
Click For Summary
SUMMARY

The discussion clarifies that in the programming question regarding the collection of N numbers, 'N' represents the total count of numbers the user will input, excluding the first input which specifies this count. The user is tasked with writing a C# program to find the smallest, largest, and average values from these N numbers. The consensus is that the ambiguity lies not in the definition of N, but in understanding the input structure required for the program.

PREREQUISITES
  • C# programming language
  • Basic understanding of loops and conditionals
  • Knowledge of data types and input handling in C#
  • Familiarity with calculating averages and comparisons
NEXT STEPS
  • Implement a C# program using arrays to store user inputs
  • Research C# methods for calculating averages and handling user input
  • Explore error handling in C# for user input validation
  • Learn about algorithm efficiency when processing collections in C#
USEFUL FOR

This discussion is beneficial for beginner to intermediate C# developers, programming students, and anyone looking to enhance their understanding of input handling and data processing in programming tasks.

Iron_Brute
Messages
19
Reaction score
0
I'm having a problem understanding what it is N stands for. The question is

"Write a program that will find the smallest, largest, and average values in a collection of N numbers. Get the value of N before scanning each value in the collection of N numbers."

To me it looks like N can stand for 2 different values, it could be the total number of values the user would input but it could also represent the individual numbers that the user inputs.

Im writing this in C#, and finding the smallest, largest, and average values I am fairly confident I can do that it is just what the N is supposed represent that is throwing me off.
 
Technology news on Phys.org
To me, it just looks like N is referring to the whole collection of numbers in general. I don't think your prof is looking for you to specify an actual value of N, just an idea of what to do with your program.

Welcome to cryptic programming directions 101...it has only just begun
 
"Write a program that will find the smallest, largest, and average values in a collection of N numbers"

Suppose it said:"Write a program that will find the smallest, largest, and average values in a collection of 5 numbers" or "Write a program that will find the smallest, largest, and average values in a collection of 20 numbers". Would you have a problem with that?

I disagree with carrotcake10, I don't think this is ambiguous at all. This is simply telling you the first number input will NOT be a part of the list but will tell you how many numbers are in the list. For example, you should write a program that will accept in put like
7
6
4
-3
2
12
-8
7
and output the largest and smallest numbers in that list of 7 numbers as well as their average.

or accept input like
200
11
32
-24
.
.
.
for a total of 200 numbers (NOT including the first "200") and output the smallest and largest numbers in that list as well as their average.

I would recommend something like

int N;
readln N;
for (int i= 0;i< N; i++)
{

}
 
Thanks for the help, now I understand what the N variable is supposed to be for now and I finished my programm this morning. Couldn't have done it without oy.
 

Similar threads

  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 17 ·
Replies
17
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 35 ·
2
Replies
35
Views
4K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 19 ·
Replies
19
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K
Replies
3
Views
2K