I am trying to create a simple Java program. Now it just takes and displays the user input. Since I am quite new to this language I wonder how can I style the program to make it look more appealing to user? I tried to google it but I start to think that it is impossible to style java programs... I am using eclipse workspace and created new .java file
Here is my program code:
import java.util.Scanner;
public class Hello {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter an integer: ");
int number = input.nextInt();
System.out.println("You entered " + number);
}
}
So, how to style my program? Maybe I could style (for example, add size, font to text, create a button and change color of it) using css somehow? Or any other technology? How can I join java ant style?