Hey, I heard this site is very good.

I need help on my C++ assignment. I would appreciate if you guys help me. :rolleyes: My professor is not very good teaching this class. Attached please find some of the excercise he want us to do.

Array Assignments

1. Write a C++ program to calculate the test score for student.
a) Create a 10 questions (True False and multiple choice)
b) Store the answers in an array.
c) Compare student answers with correct answer from array.
d) Increment the counter for each correct answer and for wrong answer.

Your output should look like

Name of Student xxxxxxxxx
Correct Answers xx
Wrong Answers xx
Percent of correct Answer = xx%

2. Write a program to calculate commission report for EZ-Tech corporation. They have five sales people. Your program must ask input for 3 sales for each sales person. Add the sales for each sales person and calculate commission. Commission is given by using the following information

a) For first $1000.00 commission rate is 5%
b) For next $2500.00 commission rate is 7%
c) Over $2500.00 commission rate is 9%
Use array

Your output should look like

Commission Report

Name Sale1 Sale2 Sale3 Total Commission

Xxxxx xxxxx xxxx xxxx xxxxx xxxx


Total xxxx xxxx xxxxx xxxxx xxxx

Recommended Answers

All 8 Replies

Okay, and what have you tried? We don't do homework for you, we help you with specific problems (when the specific problem isn't "I need you to do my homework").

I don't really understand C++, and I don't have nobody to help me. So far all I have is this:

# include <iomanip.h>

int main()
{

char studentName[20];
char question[];
int correctanswrs;
int wronganswers;
int cal_percentanswers;

cout<< " Enter Student's Name: " <<studentName;

char question[25]={True, False, multiple choice}

cout<< " Correct Answers: ";
cin>>correctanswers;

cout<< " Wrong Answers: ";
cin>>wronganswers;

If that's the extend of your C++ knowledge I wonder how you've come so far in your course to get an assigment like the one you posted.

Or have you been chased away from another site for once too often asking people to do your homework for you?

Every programming course I've ever taken had one or more books as required (or sometimes strongly suggested but take that as required) reading.
I suggest you read your courseware as it should help you along no small bit.

Then break up your assignment into discrete parts and solve each of those.
Then glue the pieces together.

Thanks, but I just find out myself how to do it.

>but I just find out myself how to do it.
Good. Maybe you actually learned something.

but your paying all that money for someone to teach you are you not??

but your paying all that money for someone to teach you are you not??

Most kids don't pay for school. Their parents do but don't pass on the bill, so the kid never knows the cost of their schooling.

From the description, the instructor does not expect any student to get all the answers right. The percentage has only two spaces for digits in "Percent of Correct Answer"

The instructor also doesn't understand english syntax, because "Percent of Correct Answer" does not mean anything close to what is intended. It's almost scramblish.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.