0
Reply

Visual C+ questions.

roman babayev

roman babayev

Oct 7 2008 1:24 PM
2.3k
Hello,

I have a few projects that I need to complete. I will post them all below, if you can do any of them, please send me a private message. Thank you.

______________________________________________________

Project 1. Create a database of clients who rent building equipment from you consisting of either tractors, bull dozers and cranes. A crane rents for $2000 , a tractor rents for $4,500 and a bulldozer rents for $1,700. Each client can rent more than one item. (The key to the table should the client name)

Create a form that allows you to enter clients and to then produce a total of you revenue.

Project 2. Create a database of students in your class( you are the professor.) Each students takes 3 tests and a final exam. The final exam count 1/3 the grade and the class average counts 2/3. The database table should should keep track of the student averages both in class and a final grade in letter form based on the Baruch standard

Create a form that manages this in manages this in formation.

Make a method that commutes the letter grade. The method should be called grade and should return a string

A hint
if ( (average>=90) && (average <93)
return “A-“;


Project 3. Create a project that demonstrates a method that displays the equation of a line passing through two points. Let this method depend on a method called slope.





A hint the first method should contain this statement.(WATCH OUT FOR MY SPELLING OF COMPUTER CODEor errors)

return “y =” +slope.ToString()+”x+(”+b.ToString+”)”;


Project 4.(DIFFICULT) Create a database of points with fields x and y (integer values).
Then make a form that will process these points as follows
After the first two points are entered a line should be drawn between them.
As each new point is entered a new line should be drawn.

*** Extra credit : Change the drawing to draw the points as a curve or a Bezier curve.

Project 5.

The following formula computes mortgage payments for a loan.

R is the monthly payment.
i is the interest rate.
n is number of payments.

L is the amount borrowed.



As a mortgage company keep track of the client loans and their monthly payments using a method that you will create to compute the value of R.


Project 6. Create a program that draws an automobile use graphics commands.

Have methods called on like drawWheel,drawFender etc.


Project 7. Create a program the uses methods that demonstrate the laws of cosines.


Project 8. (BIG CHALLENGE) Create a database that uses two tables and causes them to interact.


Project 9 : Make a game of your own construction that uses the Random class. Try to use graphics.


Project 10: Can you create a database program that store images of gold coins??