No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Re: [QUOTE=Gatorbabe]Okay everyone. I will admit that I am a newbie to this forum. Just when I think I consider myself having mastered much of the "basics," I suddenly find myself stumped, once again. For the record, I have been a computer buff since the EARLY 1990's. In fact, I ran … | |
Hi, I am learning Java and I have decided that I should create my first project. I have the application code for a Tax calculator and I would like to add a GUI to it but I am struggling to work out how to enable the text field box to … | |
Re: I use Eclipse 3, That seems to be quite good to me. It has a built in console window where you can test run your code. | |
Re: store the input ia a string variable and then use an if statement to see if they are the same: if ( inputA == inputB) System.out.println("True"); else System.out.println("False") | |
Hi, Can anyone tell me how to tweak my code so it will only generate a random number between 0 and the number input by user? Here's the code: [code] import java.util.Random; import java.io.*; public class RandomNumPicker { public static void main(String[] args)throws IOException { BufferedReader stdin = new BufferedReader … | |
Hi, I am looking for some code that will prompt for a number to enter so a random number can be generated from that amount. Example: The program run would look like this: " Please enter the number to pick a random number from: " Let's say we enter 100, … | |
Hi, I have to write a program that tests if a number entered is prime or not. I have finished all the code to display input prompts and output message Example: " Enter a number: " - " x is a prime number" - " x is not a prime … | |
Hi, I have written a program that accepts a positive integer as input and determines whether or not the number is prime, it all works accept when a number is prime it should display " x is a prime number " and continue to prompt for user input ( loop … | |
Hi All, I am new to Java and need some help with my first assignment: > Assignment 1: Taxation Calculator > Specification > Write a program to calculate the tax of an employee. The program should > prompt for a salary and age, and work out the required tax from … |
The End.