Modern applications are also user friendly and engaging, so make sure you create your own brand by being consistent in your coding and be nice to your users. Give users a basic information about yourself and about the application, but most importantly welcome the users like thy are your guests. there are many great applications that are out there, but you have to be unique in your application approach and don't let a user just leave after running your program. Thank them for using your program and either tell them about your other applications, give them incentives to come back, or at least send them to your website.
public class SampleApp {
public static void main(String[] args) {
System.out.println("The number 10 raised to the power of 3 is: " + java.lang.Math.pow(10,3));
System.out.println("Hello World");
}
}
Videos to use Greetings.jar in BlueJ and Eclipse
Greetings JAR BlueJ
https://youtu.be/F0-ClRhUZA4
Greetings JAR Eclipse
https://youtu.be/qK88J11N0VE
Greetings.jar file Download
All these simple suggestions will make you a better programmer and a consistent professional!
import rlc.zoltan.COSC.Welcome;
/**
* Description
* @author Name
* @version 1.0.0
*/
public class SampleApp {
/**
* Description
* @param args string array from the command line
* @return void
* @throws Nothing is implemented
*/
public static void main(java.lang.String[] args) {
//Let your users know that you appreciate them for choosing to use our application
Welcome wmsg=new Welcome("Welcome to my course. I hope you'll enjoy it.");
rlc.zoltan.COSC.MyCourse.InfoI();
java.lang.System.out.println(wmsg);
java.lang.System.out.println("The number 10 raised to the power of 3 is: " + java.lang.Math.pow(10,3)); java.lang.System.out.println("Hello World");
//Keep your users engaged as they leave
rlc.zoltan.COSC.Appreciate thanks=new rlc.zoltan.COSC.Appreciate();
java.lang.System.out.println(thanks);
}
}
Let me know if you need a copy of the Greetings.jar file that this example code was based on.
No comments:
Post a Comment