Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
1 Commented Post
0 Endorsements
~576 People Reached
Favorite Forums
Favorite Tags
java x 11
Member Avatar for muncher10

I'm just wondering how I can make the program print results right after inputing a guess.[CODE]import java.util.Random; public class Guess { private int z; private int x; private int y; private int toss; public Guess(int a, int b, int c) { z = a; x = b; y = c; …

Member Avatar for JavaDad
0
94
Member Avatar for muncher10

for a friend who needs help [CODE] public class Card { private static final double True = 0;//sets true public String Card;//sets card public Card(String Card2) { Card = Card2;//sets card2 } public double getDiscription() { if (Card.equals("AS"))//if the "AS" is put in it prints below { System.out.println("Ace of Spades"); …

Member Avatar for joehms22
-2
83
Member Avatar for muncher10

I need it to read all three of the numbers and up them back least to greatest. As of right now all it prints is 0.0 for all 3 and true. How do I get it to not print true and 0.0 and print the acual numbers. [CODE]public class Floating …

Member Avatar for theonly
0
79
Member Avatar for muncher10

i need to move[CODE]if(fright <= 45 && fright >= 35) System.out.println("Pressure is in range"); else System.out.println("Warning: Front right tire pressure is out of range"); [/CODE] to TirePressure but have it still print out right after i imput the tires pressure not after i imput them all and i cant figure …

Member Avatar for jon.kiparsky
0
85
Member Avatar for muncher10

I have to have the tire pressure of the two back wheels the same and the two back wheels the same but it doesnt seem to be working. [CODE]public class Pressure { private int fr; private int fl; private int br; private int bl; public Pressure() { } public void …

Member Avatar for BestJewSinceJC
0
78
Member Avatar for muncher10

I can't seem to find out why it doesnt work with average or smallest but largest and sum does work. //constructor public class DataSet { private int sum = 0; private int count = 0; private int Smallest; private int largest; public DataSet() { } public void addValue(int a) { …

Member Avatar for apines
0
156