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
~993 People Reached
Favorite Forums
Favorite Tags
Member Avatar for ChieftanBill
Member Avatar for ChieftanBill

I've been working on this program recently and its been blowing up with errors, every time I work through a bug, more surface. Now I keep getting incompatible type errors at the spots I marked out. If someone could help me sort it out or point me in the right …

Member Avatar for Slimmy
0
127
Member Avatar for ChieftanBill

This bit of code im working on is supposed to print the inputted string in steps minus 1 letter every time. ex. BANANA BANAN BANA BAN BA B Here is my code: [CODE] Triangle triangle = new Triangle(); //test driver triangle.triangleLoop("BANANA"); //test driver public void triangleRecursive(String input){ String recursiveInput = …

Member Avatar for Ezzaral
0
92
Member Avatar for ChieftanBill

This program is supposed to take the array of command line arguments and sort them alphabetically. Problem is I'm getting an ArrayOutOfBoundsException somewhere. I also have a problem with the while loop. The way I've decided to alphabetize the array with looks a little bit shoddy. My plan was to …

Member Avatar for jon.kiparsky
0
149
Member Avatar for ChieftanBill

I came across a code snippit from my textbook with a : symbol. [CODE] for (String arg : arg){ System.out.println(arg); } [/CODE] I'd like to know what that : is, and what function it serves. Thanks,

Member Avatar for JamesCherrill
0
104
Member Avatar for ChieftanBill

I've recently come upon a frustrating Array Index Out Of Bounds error when selecting any of the "calculations" to be applied to the entered values(maximum 1000 values). I suspect it to be a problem with the [CODE]values[(c+1)][/CODE] in the for loop. I can't figure a way around this problem. Can …

Member Avatar for jon.kiparsky
0
235
Member Avatar for ChieftanBill

I am currently building a program where the user inputs up to 1000 numbers (-1000 to indicate the end of input), and a number of equations are to be applied. However I have encountered a problem with the "for loop" in case 1. The variables initialized and modified within the …

Member Avatar for ChieftanBill
0
140
Member Avatar for ChieftanBill

This programming project/assignment had me write a program that lets the user play rock paper scissors with a computer until the user decides to quit, at which point their score(wins, loses, ties) will be displayed. The program I have so far works, aside from the "loop until the user decides …

Member Avatar for ChieftanBill
0
87