Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~636 People Reached
Favorite Forums
Favorite Tags
java x 5
Member Avatar for Sugarskull

[code=java]*/ import java.io.*; public class DriverBuggy { public static void main(String args[]) throws IOException { Buggy app; app = new Buggy(); app.appMain(); } // end of main() } // end of class Driver class Buggy { /* Instance Data Declarations */ BufferedReader stdin; // define stdin int firstVar, secondVar, thirdVar; …

Member Avatar for Ezzaral
0
262
Member Avatar for Sugarskull

/* DriverBuggy.java Source Name: DriverBuggy.java Date Written: 12/27/06 Written By: Annette Lege Revised By: Purpose: To identify and fix common syntax errors and one logic error in a Java program. */ import java.io.*; public class DriverBuggy { public static void main(String args[]) throws IOException { Buggy app; app = new …

Member Avatar for masijade
0
374