Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 03-12-2008, 10:17 AM   #1 (permalink)
Trotter's Avatar
 

Join Date: Jan 2005

Location: The South

Posts: 19,959

Trotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to all

Default Anyone know Java?

My Java class is kicking my butt. I don't know if I missed something early on, lost my secret decoder ring, or what, but I am in need of help.

I need someone, anyone, who knows Java to let me pick their brain. I don't need someone to do my assignments... i just need someone to help me understand what I am supposed to do and how it would be done.

I have signed up at dreamincode.com, and am slowly getting answers there, but I need something more direct.

Either post here or PM me. I have AIM, a cell phone, and might be able to remember my password for Yahoo Messenger.
__________________
R.I.P. Danny L. Trotter , 14 Nov 1945 - 4 Sept 2009




DFI LanParty-UT SLI-D - Windows 7 64-bit - AMD Athlon X2 4200+ w/CNPS9500
4GB RAM(4x1GB) - Razer Lachesis - EVGA GTX 260 Core 216 896MB


>>>> I am looking for donated DDR2 (link) <<<<

< < < < < If I've been helpful, rep me. . . .
Trotter is offline  
Old 03-12-2008, 11:23 AM   #2 (permalink)
veedubfreak's Avatar
 
Lord Techie

Join Date: Jul 2007

Posts: 6,834

veedubfreak will become famous soon enough

Default Re: Anyone know Java?

I'd offer to help, but my java class was back in 2000 and i'd done a lot of drinking since then in the attempt to erase the memories of it.
__________________
veedubfreak is offline  
Old 03-12-2008, 11:56 AM   #3 (permalink)
Trotter's Avatar
 

Join Date: Jan 2005

Location: The South

Posts: 19,959

Trotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to all

Default Re: Anyone know Java?

I can understand that.

Mainly I need be able to ask basic questions and get plain English answers.

If you are able to find any non-pickled memory cells, PM me your AIM name or phone #.
__________________
R.I.P. Danny L. Trotter , 14 Nov 1945 - 4 Sept 2009




DFI LanParty-UT SLI-D - Windows 7 64-bit - AMD Athlon X2 4200+ w/CNPS9500
4GB RAM(4x1GB) - Razer Lachesis - EVGA GTX 260 Core 216 896MB


>>>> I am looking for donated DDR2 (link) <<<<

< < < < < If I've been helpful, rep me. . . .
Trotter is offline  
Old 03-12-2008, 12:01 PM   #4 (permalink)
Ewc1307's Avatar
 
Formerly known as BuggyVeyron

Join Date: Feb 2008

Location: England

Posts: 423

Ewc1307 is on a distinguished road

Send a message via MSN to Ewc1307
Default Re: Anyone know Java?

As another recommendation, click your way over to codingforums.com - a big active community there pal...

I now nada about Java but though that might help...and good luck!
__________________
Ewc1307 is offline  
Old 03-12-2008, 12:08 PM   #5 (permalink)
aaronkupen's Avatar
 
Monster Techie

Join Date: Sep 2005

Location: Boston, MA

Posts: 1,791

aaronkupen is on a distinguished road

Send a message via AIM to aaronkupen Send a message via Yahoo to aaronkupen Send a message via Skype™ to aaronkupen
Default Re: Anyone know Java?

I can work my way around with Java if you need any help, my AIM should be in my profile.
__________________
Lenovo Thinkpad T60
Intel Core 2 Duo T7200 @ 2.00 Ghz
2 GB DDR-2 memory
ATI Mobility Radeon x1400
60 GB 7200 rpm Hard Drive
Windows Vista Business SP1 32 Bit
aaronkupen is offline  
Old 03-12-2008, 10:22 PM   #6 (permalink)
SYL\X/3K's Avatar
 
I know <html>, do you?

Join Date: Aug 2006

Location: 127.0.0.1

Posts: 1,643

SYL\X/3K is an unknown quantity at this point

Send a message via AIM to SYL\X/3K Send a message via Yahoo to SYL\X/3K Send a message via Skype™ to SYL\X/3K
Default Re: Anyone know Java?

Im studying Java right at this moment if you need any help, i know the basics since i just started this January.

First things first download "Java 1.6.0_03"
and then download: "Dr_Java" (this utility is what you program with)

If you want few examples of my work then PM and ill sent you them on txt format
__________________
P3 Setup- Intel 1.0ghz , 512Mb SDRAM , ATI 9200 128MB, 2x 40GB HD, Asus CUSL-LV

.....:::::POST Troubleshooting Steps.___.My Rig.___.Memory Test:::::.....
SYL\X/3K is offline  
Old 03-12-2008, 10:29 PM   #7 (permalink)
SYL\X/3K's Avatar
 
I know <html>, do you?

Join Date: Aug 2006

Location: 127.0.0.1

Posts: 1,643

SYL\X/3K is an unknown quantity at this point

Send a message via AIM to SYL\X/3K Send a message via Yahoo to SYL\X/3K Send a message via Skype™ to SYL\X/3K
Default Re: Anyone know Java?

Heres an Example:



class ValueofaQuadradicEXP
{
public static void main ( String[] args )
{
double x;
x = 0.0;
System.out.println ("Quadratic Function1 :" + (3*x*x -8*x +4));
x = 2.0;
System.out.println ("Quadratic Function2 :" + (3*x*x -8*x +4));
x = 4.0;
System.out.println ("Quadratic Function3 :" + (3*x*x -8*x +4));
}
}

______(ENDS HERE)_______

"class ValueofaQuadradicEXP" is the name of the file you want to save as so: ValueofaQuadradicEXP is going to be the saved file name

"double" means a decimal number is going to be used
"int" means a single digit is going to be used

* means Multiply
/ means divide
"public static void main ( String[] args )" starts off the programming
"system.out.println" displays the message with a next line under
"system.out.print" displays the message continues from the previous
and so on...
__________________
P3 Setup- Intel 1.0ghz , 512Mb SDRAM , ATI 9200 128MB, 2x 40GB HD, Asus CUSL-LV

.....:::::POST Troubleshooting Steps.___.My Rig.___.Memory Test:::::.....

Last edited by SYL\X/3K; 03-12-2008 at 10:37 PM.
SYL\X/3K is offline  
Old 03-12-2008, 10:37 PM   #8 (permalink)
Trotter's Avatar
 

Join Date: Jan 2005

Location: The South

Posts: 19,959

Trotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to allTrotter is a name known to all

Default Re: Anyone know Java?

The math functions don't give me a problem. My problem comes with trying to get a class set up properly, and then using it in a program. I have just about got set and get figured out, as well as public and private. But getting it all together is a different story...
__________________
R.I.P. Danny L. Trotter , 14 Nov 1945 - 4 Sept 2009




DFI LanParty-UT SLI-D - Windows 7 64-bit - AMD Athlon X2 4200+ w/CNPS9500
4GB RAM(4x1GB) - Razer Lachesis - EVGA GTX 260 Core 216 896MB


>>>> I am looking for donated DDR2 (link) <<<<

< < < < < If I've been helpful, rep me. . . .
Trotter is offline  
Old 03-12-2008, 10:51 PM   #9 (permalink)
SYL\X/3K's Avatar
 
I know <html>, do you?

Join Date: Aug 2006

Location: 127.0.0.1

Posts: 1,643

SYL\X/3K is an unknown quantity at this point

Send a message via AIM to SYL\X/3K Send a message via Yahoo to SYL\X/3K Send a message via Skype™ to SYL\X/3K
Default Re: Anyone know Java?

then i guess you're too far ahead of me, we just finished working with Scanners, and we've just started with 'else' and "else if"
If you want i got my whole coarse on a .pdf file with all the chapters that give out outlines of basic programming , if you want it
its 22mb in size
__________________
P3 Setup- Intel 1.0ghz , 512Mb SDRAM , ATI 9200 128MB, 2x 40GB HD, Asus CUSL-LV

.....:::::POST Troubleshooting Steps.___.My Rig.___.Memory Test:::::.....
SYL\X/3K is offline  
Old 03-13-2008, 12:13 AM   #10 (permalink)
aaronkupen's Avatar
 
Monster Techie

Join Date: Sep 2005

Location: Boston, MA

Posts: 1,791

aaronkupen is on a distinguished road

Send a message via AIM to aaronkupen Send a message via Yahoo to aaronkupen Send a message via Skype™ to aaronkupen
Default Re: Anyone know Java?

If you have any questions Trotter you can feel free to IM me whenever you want. I'm generally always on IM, and I'd get back to you pretty quickly. I consider myself pretty proficient with what it seems like you need to work on.
__________________
Lenovo Thinkpad T60
Intel Core 2 Duo T7200 @ 2.00 Ghz
2 GB DDR-2 memory
ATI Mobility Radeon x1400
60 GB 7200 rpm Hard Drive
Windows Vista Business SP1 32 Bit
aaronkupen is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Java / Adobe Question Tempest Browser & General Internet Questions 3 11-07-2007 05:53 PM
Dangerous Java Flaw Threatens Virtually Everything Osiris Virus - Spyware Protection / Detection 1 07-13-2007 04:44 PM
hacking online java program. Z e i g Browser & General Internet Questions 8 06-23-2007 01:50 AM
Java Game Yek Programming Discussions 5 06-16-2007 04:29 AM