|
Advertisement
|
Forum posts by Shelly Olson:1 page [ 1 ]
Posted in Java Answers Forum, Feb 28, 2002, 12:59 PM
Thank you so much, Anil!!
Posted in Java Answers Forum, Feb 28, 2002, 4:11 AM
I'm posting my code again, formatted so it won't lose its indentations. Sorry about the first time!import java.awt.*; import java.applet.*; public class Letters extends Applet { public void paint(Graphics g) { boolean result; char letter; letter = '#'; result = isAlpha(letter); g.drawString("The character...
Posted in Java Answers Forum, Feb 28, 2002, 3:47 AM
I'm currently taking a Java class, and am still very inexperienced. My assignment is to create an Applet that sends a character to a method, where it is analyzed to decide whether or not it is an alphabetical character. No matter what character I give it, I end up with "true." Can anyone see something obvious I might be overlooking? Any help...
1 page [ 1 ]
|