At 09:01 AM 9/26/2002, you wrote: >I have only solved more simple problems. I am working through myself, a >bunch of exercises that I have set myself. > > >I do have a text editor and a compiler -- SDK 1.3 -- may be slightly out of >date -- maybe a more recent version has come out ?
I remember actually asking questions like this one a long time ago. Learn to go to java.sun.com or http://developer.java.sun.com/developer/ and see what the latest version is. This is basic information you must learn to find yourself. The same goes for any other software product you may use. You know what models of cars are on the road, don't you? Well, learn what products are manufactured and distributed in your area of interest. When you create a resume to find a job in this field of interest, you will need to be able to describe exactly what versions of which products you have used. Start now. >----- Original Message ----- >From: "John L Raisor" <[EMAIL PROTECTED]> >To: "JDJList" <[EMAIL PROTECTED]> >Sent: Thursday, September 26, 2002 11:32 PM >Subject: [jdjlist] Re: two exercises I am trying to solve at the moment.... > > > > > > Some more basic questions that may get you more helpful answers > > > > 1) Do you have a text editor? > > 2) Do you have a java compiler? > > 3) Is this your first java program or have you been able to get other java > > programs to run? > > 4) What other programming languages do you know? > > > > Sorry about the footer, They didnt ask me about it. > > > > > > > > > > > > "Tim Nicholson" <[EMAIL PROTECTED]> on 09/26/2002 09:08:15 AM > > > > Please respond to "JDJList" <[EMAIL PROTECTED]> > > > > To: "JDJList" <[EMAIL PROTECTED]> > > cc: (bcc: John L Raisor/MN/Unitedmail) > > Subject: [jdjlist] Re: two exercises I am trying to solve at the >moment.... > > > > > > > > Jason, > > > > I understand what you are saying but *I* do not understand how to do these > > problems. I have read over them and I do not know how to do them. And I >am > > a beginner. These problems may well be for advanced programmers or someone > > with more experience than me. > > > > I do not know how to do them myself so I am kindly asking if someone can > > help me with them. I don't think that is too unreasonable to ask ? > > > > > > > > ----- Original Message ----- > > From: "Jason Bell" <[EMAIL PROTECTED]> > > To: "JDJList" <[EMAIL PROTECTED]> > > Sent: Wednesday, September 25, 2002 8:36 PM > > Subject: [jdjlist] Re: two exercises I am trying to solve at the >moment.... > > > > > > > Tim > > > > > > you may notice that in your programming questions it says "your program > > > will"..... may i put some emphasis on the words "your" and "program". > > > > > > homework is there to make you think about the problem and then code a > > > solution. not to skim across a problem and then ask someone else to >code > > > the solution for you. > > > > > > sounds harsh i know, but it's the truth > > > > > > regards > > > jase > > > > > > > > > -----Original Message----- > > > From: Tim Nicholson [mailto:[EMAIL PROTECTED]] > > > Sent: 25 September 2002 12:15 > > > To: JDJList > > > Subject: [jdjlist] Re: two exercises I am trying to solve at the > > > moment.... > > > > > > > > > Are you saying that you actually got programming questions when you were > > in > > > grade 9 ? > > > > > > >From where i come from, it is unheard of to have done any sort of > > > programming until you reach university level. > > > > > > So are you suggesting that you studied programming while you were still >at > > > high school ? > > > I would be very interested to hear about that....? > > > > > > Joseph, is it possible to provide some coded solution segments for these >2 > > > problems ? Particularly the ones to do with the computer saying in words > > > what you type in as an int. > > > > > > I would much appreciate if you could possibly provide a solution that I > > can > > > then study myself and see what sort of things you were doing in them so > > that > > > I can learn from the solution ? > > > > > > I would appreciate your help ? > > > > > > > > > ----- Original Message ----- > > > From: "Joseph B. Ottinger" <[EMAIL PROTECTED]> > > > To: "JDJList" <[EMAIL PROTECTED]> > > > Sent: Wednesday, September 25, 2002 8:12 PM > > > Subject: [jdjlist] Re: two exercises I am trying to solve at the > > moment.... > > > > > > > > > > RE: [jdjlist] Re: J2MEWell, Tim, the first step is to read the > > suggestions > > > > made by your coursework. Start small; write functions that do the >simple > > > > stuff first. Break the problems down (although most of the work has >been > > > > done for you already.) Man, these questions have gotten easier since >*I* > > > was > > > > in grade 9. > > > > > > > > ----- Original Message ----- > > > > From: Tim Nicholson > > > > To: JDJList > > > > Sent: Wednesday, September 25, 2002 4:09 AM > > > > Subject: [jdjlist] two exercises I am trying to solve at the >moment.... > > > > > > > > > > > > Hi everyone again, > > > > > > > > this is in addition to the previous email that I sent but this is on a > > > > rather different topic. > > > > > > > > I am trying to work through some problems/exercises and I was >wondering > > if > > > > anyone might be able to suggest how I might be able to solve these > > > problems > > > > ? > > > > > > > > Like I said before, this email is on a different topic to the email >that > > I > > > > sent before. > > > > > > > > The 1st problem I was wondering if anyone could help me on is as >follows > > > :- > > > > > > > > >======================================================================== > > > > > > > > Design and implement a program that allows the user to input a number >in > > > any > > > > base (2..16) as a string of digits (0..9, A..F) and the base that the > > > number > > > > is in and displays the value in decimal of the input number. > > > > Your program must have two function methods that respectively return: > > > > the value of one digit character; and > > > > the value of a whole string of digits in a given base. > > > > Hint: The first of those functions makes it easier to write the >second. > > > > Your program may have a BreezySwing or text-only interface > > > > > > > > >======================================================================== > > > > >======================================================================== > > > > And the second one is like this :- > > > > >======================================================================= > > > > Write a program that allows the user to input any int value and >outputs > > > that > > > > number in words. > > > > Examples: > > > > inputoutput > > > > 0zero > > > > 3three > > > > 13thirteen > > > > 23twenty-three > > > > 223223two hundred and twenty-three thousand, two hundred and > > twenty-three > > > > 223223223two hundred and twenty-three million, two hundred and > > > twenty-three > > > > thousand, two hundred and twenty-three > > > > >2147483647two billion, one hundred and forty-seven million, four > > hundred > > > > and eighty-three thousand, six hundred and forty-seven > > > > -1minus one > > > > > > > > Your program must have three function methods that respectively >return: > > > > a value between 1 and 9 in words; > > > > a value between 1 and 999 in words; and > > > > any int value in words. > > > > Hint: The first of those functions makes it easier to write the second > > and > > > > writing the second will help write the third. > > > > Good solutions may have even more functions. > > > > > > ========================================================================= > > > > >======================================================================== > > > > I really don't have a clue how to solve these so any help as to what > > sort > > > of > > > > algorithm and java code implementation that I could use, would be very > > > much > > > > appreciated. > > > > > > > > > > > > To change your JDJList options, please visit: > > > > http://www.sys-con.com/java/list.cfm > > > > > > > > To change your JDJList options, please visit: > > > http://www.sys-con.com/java/list.cfm > > > > > > > > > > > > > > > > To change your JDJList options, please visit: > > > http://www.sys-con.com/java/list.cfm > > > > > > > > > To change your JDJList options, please visit: > > http://www.sys-con.com/java/list.cfm > > > > > > > > To change your JDJList options, please visit: > > http://www.sys-con.com/java/list.cfm > > > > > > > > > > > > > > > > > > This e-mail, including attachments, may include confidential and/or > > proprietary information, and may be used only by the person or entity to > > which it is addressed. If the reader of this e-mail is not the intended > > recipient or his or her authorized agent, the reader is hereby notified > > that any dissemination, distribution or copying of this e-mail is > > prohibited. If you have received this e-mail in error, please notify the > > sender by replying to this message and delete this e-mail immediately. > > > > > > To change your JDJList options, please visit: >http://www.sys-con.com/java/list.cfm > > > >To change your JDJList options, please visit: >http://www.sys-con.com/java/list.cfm ______________________________________________ To change your JDJList options, please visit: http://www.sys-con.com/java/list.cfm
