Hi All
I have opened the MyGradesProject OK and when I run it says Build
Successful, but does not bring up the JOptionPane to enter the grades
Have debugged and getting these 2 errors not sure if relevant
Have no FileObject for C:\Program Files\Java\jdk1.6.0_18\jre\lib
\sunrsasign.jar
Have no Fi
(New Question Bottom-Posted ..)
RE: JavaIntro: JavaControl, Lab-1034, Exercise 2: For Loop
[code]
//=
// Search the String array using for loop.
// * The "names.length" is the size of the array.
// * This for loop compares the value of each entry
Hello,
I am doing the Lab 1034. Link:
http://www.javapassion.com/handsonlabs/javacontrol/index.html
I have downloaded and unziped the file 1034_javacontrol.zip but when I try
to enter to the javacontrol folder the systems says: "The folder
"javacontrol" could not be opened because you do not have
Hello all on lab 1034 homework assignment
When I run the program and type in the 1st name on the list "Beah" no
problem.
Name found on the list and the program is finished.
When I rerun the program and type in the 2nd name on the list "Bianca" the
program gets stuck .
Here's part of the p
as example code 1.11 the average is declared like primitive type
double so in the output it should be double , so what's method can be
used in order to to display after point?
thanks
--~--~-~--~~~---~--~~
To post to this group, send email to javaprogrammingwithp
Hey all,
I have a question about Lab-1034 assignment on modding MyForLoop to use while
loop. Does anyone know if the loop has to display on the JOptionPane or
System.out.println("");?
I have it set using:
while (counter < 6){
System.out.println(searchName);
counter++;
}
It di
I can't figure out how to do the while loop for this lab. help please!
--~--~-~--~~~---~--~~
To post to this group, send email to javaprogrammingwithpassion@googlegroups.com
To unsubscribe from this group, send email to
javaprogrammingwithpassion-unsubscr...@google
In the file 1034_javacontrol.zip
Step 2 in this exercise says
2. Study the FiveNamesUsingwhile.java which uses if/else control
structure,
I think this should say
uses a while() structure,
--~--~-~--~~~---~--~~
To post to t
I am having trouble converting the homework form a for loop to a while loop.
Here is the for loop:
for (int i=0; i if (names [i ].equals(searchName)){ foundName =true; break;
Here is how I changed it in to a while loop:
int i=0; while