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
~5K People Reached
Favorite Forums
Favorite Tags
java x 13
Member Avatar for Darkfoxx

Here is the full code thus far: [CODE] public class Cardmain { public static void main (String[] args) { War wargame = new War(); wargame.play(); } } class Deck { static final int numberOfCards = 52; Card[] cards = new Card[numberOfCards]; int index; public Deck() { // Constructs all 52 …

Member Avatar for peter_budo
0
5K
Member Avatar for Darkfoxx

Hi, I'm working on a simulation that uses a fish in a 1x5 "fish tube" matrix. The fish (this symbol: ">=)" ) moves randomly around the tube and the number of "bumps" against the top, bottom, right, and left sides are counted. What I want to do is this: Turn …

Member Avatar for jwenting
0
171
Member Avatar for Darkfoxx

I am making a program that allows the user to enter the year he/she would like a calendar for, then the program computes the day January 1st will fall on. Then it is able to print out the calendar (see 1st attached image). I am having a problem getting the …

Member Avatar for Darkfoxx
0
114
Member Avatar for Darkfoxx

Ok, I am working on a program that lets a user enter a year which they want a calender for. The program figures out if the year is a leap year (completed), what day January 1st falls on so that the calender has a starting point (completed, see new code …

Member Avatar for Darkfoxx
0
80
Member Avatar for Darkfoxx

Hello. I have made a program that rolls a pair of dice and then calculates the percentage of time a number has come up (see output on image). I am having a problem getting the percentages right...mostly because I calculate the average...how would I get the percent??? However, the main …

Member Avatar for Darkfoxx
0
119
Member Avatar for Darkfoxx

I posted this on devshed.com's forums, but I have gotten no replies :sad: . I am working on a program that reads data values from a file and uses them to compute the output. It is a tapemaker program that figures out how many minutes and seconds the songs take …

Member Avatar for Phaelax
0
107