Forum: Java Feb 21st, 2005 |
| Replies: 11 Views: 5,396 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. |
Forum: Java Feb 21st, 2005 |
| Replies: 3 Views: 8,204 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... |
Forum: Java Oct 28th, 2004 |
| Replies: 1 Views: 7,359 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:
import java.util.Random;
import java.io.*;
... |
Forum: Java Oct 27th, 2004 |
| Replies: 1 Views: 4,880 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... |
Forum: Java Sep 28th, 2004 |
| Replies: 2 Views: 1,804 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... |
Forum: Java Sep 27th, 2004 |
| Replies: 10 Views: 6,119 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") |
Forum: Java Sep 27th, 2004 |
| Replies: 5 Views: 4,867 Thank you very much, I will write it in with my code tonight and see how it goes, Thank you!!!!!!!!!!!
You are a great help!!!!!!! |
Forum: Java Sep 27th, 2004 |
| Replies: 5 Views: 4,867 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... |
Forum: Web Browsers Sep 22nd, 2004 |
| Replies: 10 Views: 18,959 Try uninstalling your browser the reinstall it, It may work. |
Forum: Java Sep 22nd, 2004 |
| Replies: 1 Views: 2,413 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... |