Forum: C++ Jul 30th, 2009 |
| Replies: 2 Views: 223 You aren't going to get anything on any web site as a solution to this.
If you understand some about C++ then converting this to C will be easy. Don't be lazy.
Anyways, this code you found... |
Forum: Java Apr 17th, 2009 |
| Replies: 9 Views: 533 From a quick look:
pw.println(filenm); // got a java.lang.NullPointerException here
You have never initialized a pw object. pw is set to null. Now you are initializing pw in... |
Forum: Java Mar 6th, 2009 |
| Replies: 19 Views: 2,633 Why use a stack? You could just loop through the string and print each char in reverse order.
But still think using the built in StringBuilder is better.
for (int i=s.length()-1;i>=0;i--) {
... |
Forum: Java Mar 4th, 2009 |
| Replies: 19 Views: 2,633 Either use a loop like others are saying or you can take the lazy way out:
String sText = "bracket";
String sReverse = new StringBuilder(sText).reverse().toString();... |
Forum: Java Jan 22nd, 2009 |
| Replies: 11 Views: 2,388 I used to use the buffered reader in September but I started to find when in my contests that the Scanner is better.
Since I can read individual elements at a time, I don't have to worry about... |
Forum: C# Jan 2nd, 2009 |
| Replies: 36 Views: 2,462 No! We don't do other people's work, but we will help. :D :D |
Forum: Community Introductions Jan 1st, 2009 |
| Replies: 3 Views: 285 Thanks :D :D
I loved Final Fantasy 8, pretty much done everything in the game. ;) Although sadly it is impossible to get my hands on a copy of final fantasy 7. :( |
Forum: Geeks' Lounge Jan 1st, 2009 |
| Replies: 10 Views: 584 More fingers? lol Yea, that's my new years resolution, I need more fingers. :D Or another hand? lol
So what's people new year's resolution? :) I'm too cut back on bad food, and soda. :) |
Forum: IT Professionals' Lounge Dec 31st, 2008 |
| Replies: 107 Views: 15,652 |
Forum: PHP Dec 31st, 2008 |
| Replies: 6 Views: 518 XAMPP might even be decent for production, it seems secure. It has a ton of futures. I wonder if it's good enough to use in a production environment. :) |
Forum: Geeks' Lounge Dec 31st, 2008 |
| Replies: 4 Views: 1,043 I don't use either.
Why do you like vbulletin better? |
Forum: C# Dec 31st, 2008 |
| Replies: 36 Views: 2,462 How can it be your job, if you don't know anything about C#?
Instead of working hard next time, put an effort this time. I pointed out to you before a way to find the largest value in an... |
Forum: Geeks' Lounge Dec 31st, 2008 |
| Replies: 3 Views: 339 Woah, that is cool!!
Perhaps you could go in the little hole at the bottom? http://i204.photobucket.com/albums/bb52/jwebmaster/figure-8-bookcase-job-koelewijn.jpg |
Forum: Geeks' Lounge Dec 31st, 2008 |
| Replies: 10 Views: 584 Happy new years everyone! :D Hope it's great. :) |
Forum: PHP Dec 31st, 2008 |
| Replies: 2 Views: 646 Nope! Not that I'm aware of. :( You'll probably have to ask your host about it. :( |
Forum: PHP Dec 31st, 2008 |
| Replies: 6 Views: 518 If you just installed the latest PHP, you'll have to have a web server such as apache installed.
Try xampp (http://www.apachefriends.org/en/xampp-windows.html) if you want a quick install of php.... |
Forum: PHP Dec 31st, 2008 |
| Replies: 1 Views: 515 Why don't you just generate the full image on one server? I'm not really sure what you mean. How is generating half of an image on one server and a full image on another server?
Why are you using... |
Forum: Java Dec 31st, 2008 |
| Replies: 2 Views: 356 That's an amazing list of tutorials. :D Thanks man. :D |
Forum: Java Dec 31st, 2008 |
| Replies: 5 Views: 471 What do you mean?
There isn't multiple inheritance in Java. It's a single inheritance only language. :) |
Forum: Community Introductions Dec 31st, 2008 |
| Replies: 3 Views: 285 Name: James
Hair: Brown
Eyes: Brown
Location: Canada
Age: 15
Hobbies: Listening to music, programming, web design. Um that's about all I do. Lol Play computer games. instant message people. Um I... |
Forum: C# Dec 31st, 2008 |
| Replies: 36 Views: 2,462 You can't run your code because there isn't a main method.
After looking up 2 web sites, you most likely won't find people to do your homework for you.
You need to slow down, and go learn... |