473,786 Members | 2,775 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

I rea......lly need your help ( C++ )

ash
Hey I am new, but I don't have time to intruduce myself yet.
I am intro to C++
and this is a programme I have to write.
all the direction are here, It will be very nice of someone to figure
this out.
note: I only in intro C++ which is about to be finished by the next two
weeks.
The topic which I am on in my book is "POINTERS"

Text from the book:

Write a program that can be used to gather statistical data about the
number
of movies college students see in a month. The program should perform
the
following steps:
Ask the user how many students were surveyed. An array of
integers with this many elements should be dynamically allocated.
Allow the user to enter the number of movies each student saw into the
array.
Calculate and display the average, median, and mode of the values
entered.
(Use the functions you wrote in problem 6 and 7 to calculate the median
and mode.)

Input Validation: Do not accept negative numbers for input.
Additional Notes:

Use the following skeleton for the main program:

void main(void)
{
int *dyn_array;
int mode, students;
float avrg;

do
{
cout << "How many students will you enter? ";
cin >> students;
}while ( students <= 0 );

dyn_array = create_array( students );
//this funtion creates a dynamic array
//and is found in the book
enter_data( dyn_array, students );
//use 'pointer' notation in this function to
//access array elements
mode = get_mode( dyn_array, students );
//check out pc6 for an explanation of 'mode'
//median = median( dyn_array, students );
//don't do median in this exercise
avrg = average( dyn_array, students );
//should be trivial
cout << "The array is: ";
showArray( dyn_array, students);
//you should already have this function
cout << endl;
cout << "The Mode is " << mode << ".\n";
cout << "The average is " << avrg << ".\n";

delete [] dyn_array;
return 0;
}

Some help (and requirements) for the mode function:

'mode' as explained in pc6: "In Statistics, the 'mode' of a set of
value is the
value, which occurs most often or with the greatest frequency".

Note: Very important to completely understand the explanation below.
Get
on the discussion board if there is any confusion.

The call:
mode = get_mode(dyn_ar ray, student);

The function header:
int get_mode(int *student_data, int num_students)

get_mode should do the following:

create an array 'frequency' of 1000 integers. 1000 is arbitrarily
chosen as
the absolute maximum of movies a college student could see in a week.
This array
will keep track of frequencies of weekly movie watching values.

Intialize array 'frequency' elements to zeros (use a loop)

Populate the 'frequency' array with the data (how many students see 1,
2, 3,
etc. movies a week)

The following algorithm is a useful method to easily increment random
values:

Run a loop on 'student_data' from 0 to 'num_students'.

The content of 'student_data' array becomes the
index of the 'frequency' array and the content of that 'frequency'
array
element gets incremented. Very important to understand this process.

Here is a little animation help for
the sentence content of 'student_data' array becomes the index of the
'frequency' array'.

In subscript notation, it would look like this:

frequency [ student_data[index] ] ++

However, a requirement for the code above is to implement
student_data[index]' in pointer notation and leave frequency[] in
subscript
notation.

Example of processing the mode with 'frequency' and 'student_array' :

If, at the beginning, the frequency array contains:

0 0 0 0 0 0 ...
and 'student_data' contains:

2 4 1 2 ...

In the loop the first element '2' points to the third element (index 2)
in the
'frequency' array and increments it. So now 'frequency' looks like
this:

0 0 1 0 0 0 ...

By the time the loop runs through all 4 elements of 'student_data',
'frequency'
will look like this:

0 1 2 0 1 0 ...

Notice that the 'frequency' array above now contains the mode: 2 movies
a week
(the third element, but index 2) contains the biggest number. Makes
sense? If
you aggree with the process described above, then you can write the
program to
accomplish it.
After the 'frequency' array is updated with frequencies of all data,
make a
new loop with the 'frequency' array to pick out the largest value. Use
the same
function used in earlier assignment. It should look something like:

for(i = 0; i < 1000; i++)
{
if(max < frequency[i])
{ max = frequency[i];
maxi = i;
}
}
return maxi -- remember that the index corresponds to the movies seen
per week!
Note: Do not worry about making the program handle bimodal values (mode
having
two values).
Don't forget to block-comment every function definition. Example:

//*************** *************** *************
// enter_data()
// This function inputs data for all students
// into dynimacally created array
//*************** *************** *************

Nov 15 '05 #1
3 3814
ash wrote:
Hey I am new, but I don't have time to intruduce myself yet.
I am intro to C++


C is not C++. Try comp.lang.c++ down the hall.

--
Peter

Nov 15 '05 #2

"Peter Nilsson" <ai***@acay.com .au> wrote in message
news:11******** **************@ g43g2000cwa.goo glegroups.com.. .
ash wrote:
Hey I am new, but I don't have time to intruduce myself yet.
I am intro to C++


C is not C++. Try comp.lang.c++ down the hall.


He did. (And at alt.comp.lang.l earn.c-c++).
Nobody there would do his work for him either.
Bummer.

-Mike
Nov 15 '05 #3
ash wrote:
Hey I am new, but I don't have time to intruduce myself yet.
I am intro to C++
and this is a programme I have to write.
C++ is not C. C++ help can be found at <news:comp.lang .c++>, but first
check their FAQ and, since you haven't the time for the expected
practice of following the newsgroup for several weeks before posting,
check the archive at <gttp://groups.google.c om>. In any case, fix the
void main(void)


which is illegal for either C or C++ in a hosted environment. Take the
time to burn the book suggesting that you write illegal code.
Nov 15 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
6328
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334, column 13: there is no attribute "SRC" <bgsound src="C:\My Documents\zingwent.mids"> You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is...
5
2196
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows: Objectives The purpose of this assignment is to have you practice the design of object-oriented classes, including one or more of the following concepts
0
1840
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities, all dont work "Re:" need help "Re:need help"
9
2938
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with a device. The definition of the table is as follows: CREATE TABLE devicedata ( device_id int NOT NULL REFERENCES devices(id), -- id in the device
7
3306
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte buffer into the character pointer. The code looks like the following: #include <stdio.h> #include <stdlib.h> #include "stdafx.h" BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call,
15
4644
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to communicate with a MySQL database table on a web server, from inside of my company's Access-VBA application. I know VBA pretty well but have never before needed to do this HTTP/XML/MySQL type functions.
16
2540
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client uses IE to talk with a server. The user on the client (IE) sees an ASP net page containing a TextBox. He can write some text in this text box and push a submit button.
8
2750
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only the sequence nos and it should be such that i can access it through the structure .plz help me .
0
3963
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need Inbox Reply from Craig Somerford <uscos@2barter.net> hide details 10:25 pm (3 minutes ago)
20
4287
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site is structured as an upside-down tree, and (if I remember correctly) never more than 4 levels. The site basically grew (like the creeping black blob) ... all the pages were created in Notepad over the last
0
9497
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10164
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10110
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9962
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7515
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6748
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4067
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3670
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.