Fiesta Fan Forums

Fiesta Fan Forums (http://www.fiestafan.com/forums/index.php)
-   M O S (http://www.fiestafan.com/forums/forumdisplay.php?f=25)
-   -   bleh (http://www.fiestafan.com/forums/showthread.php?t=6713)

Destrus 03-24-2008 06:56 PM

bleh
 
this lab has to do with GUI. i no where near memorized that, this could take me a while ;_;

Destrus 03-24-2008 07:11 PM

i love you eclipse <3

Lithon 03-24-2008 07:18 PM

O.o i would think ppl are more happy with GUI than command, if we are talkin about the same thing lol

Destrus 03-24-2008 07:21 PM

when writing the program, no. GUI takes more stuff, or at least used to, not sure now after 1.5 which made a lot of things easier *needs to read his book*. however once again i love you eclipse, yes write the code for me >:3

btw, eclipse is the compiler i'm using.

Spirit 03-24-2008 07:22 PM

Graphical User Interface?

Destrus 03-24-2008 07:24 PM

Quote:

Originally Posted by Spirit (Post 113009)
Graphical User Interface?

yea

also, i don't really feel like working right now i want to go back to sleep or play fiesta or holic

Lithon 03-24-2008 07:25 PM

lol, so i see, and i wish i was home!!.............must work on my samurai in FFXI

Spirit 03-24-2008 07:27 PM

Haha, at first I thought it was a medical term (I guess because you used the word lab and i associate labs with medical stuff). So I googled it. :D Go me!!
<----- not very bright on these issues. :D

Zwivix 03-24-2008 07:27 PM

I wish I was home on Spring Break....must keep bored away...

I have no idea what you guys are talking about but i wish i did ^^

Destrus 03-24-2008 07:40 PM

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;

/**
* @author --------------, Mar 24, 2008
*
*/
public class Bank {

/**
* <b>Intent:</b> Describe the purpose of the method. <br>
* <b>Pre-condition:</b> Describe what needs to be true before use of
* method. <br>
* <b>Post-condition:</b> Describe what is true after a call to method.
* <br>
*
* @param args
* @throws IOException
*/

public static void main(String[] args) throws IOException {
ArrayList<BankAccount> aList1 = new ArrayList<BankAccount>();
Scanner inFile = new Scanner(new File("lab9.dat"));
BankAccount a1;
String n;
double mun;
int num;

while (inFile.hasNext()) {
n = inFile.nextLine();
num = inFile.nextInt();
mun = inFile.nextDouble();
a1 = new BankAccount(n, num, mun);
aList1.add(a1);

}

}

}
ffs, exception in main blah blah blah yet my brain is not functioning properly to figure out what i screwed up


All times are GMT. The time now is 02:53 AM.

Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.