Наши проекты:
Журнал · Discuz!ML · Wiki · DRKB · Помощь проекту |
||
ПРАВИЛА | FAQ | Помощь | Поиск | Участники | Календарь | Избранное | RSS |
[52.14.135.68] |
|
Сообщ.
#1
,
|
|
|
Salam aleikum, friends!
I wrote an applet and I don't understand, why it does not work... Here is the applet: import java.awt.*; public class AppRoot extends com.sun.java.swing.JApplet{ int number; public void init() { number = 255; } public void paint(Graphics screen) { Graphics2D screen2D = (Graphics2D) screen; screen2D.drawString("The square root of " + number + " is " + Math.sqrt(number), 5, 50); } } Please help me.. Thanks! |
Сообщ.
#2
,
|
|
|
What do you mean by does not work?
Exception? No result? Be more precise, please. |
Сообщ.
#3
,
|
|
|
Товарищ наверное пробует запустить свой аплет в Explorer, который не находит JApplet и вообще ни сном не духом не знает о javax.swing.*.
|