Small Applet
[sourcecode=’java’] //import directives import javax.swing.*; public class HelloJava { //main method public static void main( String[] args ) { JFrame frame = new JFrame( “Hello… Read More »Small Applet
[sourcecode=’java’] //import directives import javax.swing.*; public class HelloJava { //main method public static void main( String[] args ) { JFrame frame = new JFrame( “Hello… Read More »Small Applet
Switch is mostly useful while we are making any menu-driven program and we can use switch even for many other purposes. Here I’m going to… Read More »Using Switch