Thanks for helping me get the return statement taken care of. All errors went away. Now when I went to run the code in my terminal. No matter what I enter, it continuously loops my system.out.print.
Type: Posts; User: mrroberts2u
Thanks for helping me get the return statement taken care of. All errors went away. Now when I went to run the code in my terminal. No matter what I enter, it continuously loops my system.out.print.
Ok all, I have been racking my brain for the last 4 hours. I can not for the life of my figure out return statement I need for my code. (Which is located at the last method; public static String...
import javax.swing.JOptionPane;
public class RandomNumbers {
public static void main (String[] args) {
//Generate three random numbers
int one, two, three;
one = (int)(Math.random()*(10));...
Ok so, I got the right code finally
mport javax.swing.JOptionPane;
public class RandomNumbers {
public static void main (String[] args) {
//Generate three random numbers
int one, two,...
Hello to all! First I would like to say that I am only a very real beginner. IN fact, I have recently started taking a Java Programming class, but have found it very interesting. Now I have messing...