Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~742 People Reached
Favorite Tags
java x 8
Member Avatar for shootingrubber

I have been trying to get this to work on my client's server for a website I am developing, but I simply cannot get it to work. Basically I am trying to remove the .html extensions, and add a trailing slash (in the URL bar). So if someone enters: * …

0
72
Member Avatar for shootingrubber

Code 1: [CODE]public class Ticket { private int nextSerialNumber = 100; private int serialNumber ; public Ticket () { serialNumber = nextSerialNumber; nextSerialNumber = nextSerialNumber + 1; } public int getSerialNumber () { return serialNumber ; } public static void main( String [ ] args ) { Ticket t1, t2, …

Member Avatar for stultuske
0
146
Member Avatar for shootingrubber

Hello, I am writing a Tic Tac Toe java program, and it's almost all working; however, I noticed a bug in it recently and I cannot find the source of the problem. Basically the game has a New Game option in the file menu, and the first time it works …

Member Avatar for shootingrubber
0
186
Member Avatar for techgeek420

I'm working on a program that calculates the day of the week for dates in history or the future. I have the calculation part correctly but there are 4 errors left that I do not know how to fix. Any help will be greatly appreciated! Thanks [CODE]import java.util.Scanner; public class …

Member Avatar for shootingrubber
0
152
Member Avatar for shootingrubber

Hello, I recently started learning java, and I am trying to make a program and I am running into some trouble. Basically what I want is for the user to input the number of people attending a movie, and then the user could input all of the ages of the …

Member Avatar for shootingrubber
0
186