I tried to insert the simplest java code on the page of my site . That's what I did ! It's empty there! I tried to do this with the <applet> tag. Here is the code:
<applet code=" class OneMoreHello { public static void main(String[] args) { byte age=12; char sex='м'; double weight=41.2; int height=145; System.out.println("Персональные данные пользователя:"); System.out.println("Возраст: "+age+" лет"); System.out.println("Пол(м/ж): "+sex+"."); System.out.println("Вес: "+weight+" кг"); System.out.println("Рост: "+height+" см"); } } " >
How to do right?