In this section, we will learn how to initialize and run java debugger with the help of an example.
- Create a simple java program
JDBExample.java
public class JDBExample
{
public static void main(String...kk)
{
int a=10, b=20;
int c=a+b;
System.out.println("Sum of two number : "+c);
}
}
0 comments:
Post a Comment