This page contains an archived post to the Java Answers Forum made prior to February 25, 2002.
If you wish to participate in discussions, please visit the new
Artima Forums.
Message:
Reply to your question
Posted by Vivek Kumar on June 13, 2000 at 5:46 AM
> I entered a simple program because it uses a try and catch > statement and I have no experience with the two. Here's the code > as seen in the book. It throws two errors and I cannot find the > answer. Give a holler if you see anything wrong with the code. > Thanks, Steve: > public class Fruit > { > public static void main(String[] args) > { > int numOranges = 5; > int numApples = 10; > int numFruit = 0; > > numFruit = numOranges + numApples; > System.out.println("A totally fruity program."); > System.out.println("Total fruit is " + numFruit); > > System.out.println("(press ENTER to exit)"); > try > { > System.in.read(); > } > catch (IOException e) > { > return; > } > } > } Hi, import java.io.* and hopefully your problem will be solved. Vivek
Replies:
|