New @ programming really need a tutor and im struggling and i need some help understanding

  • Thread starter Thread starter Tim M.
  • Start date Start date
T

Tim M.

one of my assignments is create a class named numbers whose
Main()method holds two interger variables, assign values to the
variables. within the class, create two methods, Sum() and
Difference(),that compute the sum of the difference between the values
of the two variables, respectively. each method should perform the
computation and display the results. in turn call each of the two
methods from Main(), passing the values of the two interger valuesof
the two interger variables.


then

B

Add a method named Product() to the Numbers class. This method should
compute the multiplication product of the two intergers. but not
display the answer. instead it should return the answer to the calling
Main() program, which displays the answer.


sorry for the sloppy typing and if any help or ideas is available it
is greatly appreciated.
 
You DO need a tutor, Tim. Someone who can sit down with you and explain the
concepts one at a time.

This is not something that newsgroups do very well.

Have you looked around the web for tutoring services? Have you asked your
teacher if a tutor is available at your school?

I'd love to help, but there is no way, given this medium, that it would
work.

Get face-to-face help, Tim. Once you "get" the concepts involved, the
assignments will flow naturally.

--- Nick
 
Tim M. said:
[homework assignment]

You won't learn or understand much if we just give you a solution to
the entire problem.

What have you tried so far, and why didn't it work?

P.
 
(e-mail address removed) (Tim M.) wrote in
one of my assignments is create a class named numbers whose
Main()method holds two interger variables, assign values to the
variables. within the class, create two methods, Sum() and
Difference(),that compute the sum of the difference between the values
of the two variables, respectively. each method should perform the
computation and display the results. in turn call each of the two
methods from Main(), passing the values of the two interger valuesof
the two interger variables.


then

B

Add a method named Product() to the Numbers class. This method should
compute the multiplication product of the two intergers. but not
display the answer. instead it should return the answer to the calling
Main() program, which displays the answer.


sorry for the sloppy typing and if any help or ideas is available it
is greatly appreciated.

What is your text book for the course? Perhaps one of us, if we are
familiar with the text, can point you to some reading. In teaching C# I
am using the books by Jesse Liberty, "Programming C#" for those who have
worked in Java or C++ and "Learning C#" for absolute newbies. I find
the books quite clear to the students. Perhaps one of these, notvery
expensive paperbacks would help.

--
Dennis Roark

(e-mail address removed)
Starting Points:
http://sio.midco.net/denro/www
 
What is your text book for the course? Perhaps one of us, if we are
familiar with the text, can point you to some reading. In teaching C# I
am using the books by Jesse Liberty, "Programming C#" for those who have
worked in Java or C++ and "Learning C#" for absolute newbies. I find
the books quite clear to the students. Perhaps one of these, notvery
expensive paperbacks would help.
Thank you for the kind words and the recommendations. Please be aware that I
provide full source code, a FAQ, errata and a link to a private support
forum on my web site: http://www.LibertyAssociates.com. In addition, I try
to spend time on this group answering questions (though with Whidbey on the
horizon, time has been at a premium lately).

Thanks again.
 
Back
Top