|
-
Error when running my 1st program
Below is my 1st Java pgm from an online course. I'm getting the error on the last line. I think it has to do with my environment, any help would be appreciated:
class BigDebt {
public static void main (String[] arguments) {
int debt = 446000000;
debt = debt / 1440;
System.out.println("A minute's worth of debt is $" + debt);
}
}
// C:\jv1\Unit2\bigdebt1>java BigDebt
// Exception in thread "main" Java.lang.NoClassDefFoundError: BigDebt
Thanks in advance,
Thanks in advance,
Jerry
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks