![]() |
bleh
this lab has to do with GUI. i no where near memorized that, this could take me a while ;_;
|
i love you eclipse <3
|
O.o i would think ppl are more happy with GUI than command, if we are talkin about the same thing lol
|
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. |
Graphical User Interface?
|
Quote:
also, i don't really feel like working right now i want to go back to sleep or play fiesta or holic |
lol, so i see, and i wish i was home!!.............must work on my samurai in FFXI
|
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 |
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 ^^ |
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.