+ 1
Question
Hello guys how to get this out put import java.awt.*; import java.applet.*; public class NewClass1 extends Applet { Button b1 = new Button("REGISTER"); Checkbox c1=new Checkbox("MALE", true); Checkbox c2=new Checkbox("FEMALE",false); public void init() { setLayout(null); add(b1); add(c1); add(c2); b1.setBounds(20,100,100,20); c1.setBounds(250,150,210,20); c2.setBounds(250,180,210,20); } }
3 Réponses
+ 7
1. Go to profile
2. Code bits
3. Java
4. Put that code there
+ 8
Please use appropriate tags for programming language when posting a question. Thanks!
+ 3
Please Don't write your Code in question It is hard to read and understand in that way.Please click on edit your question and then on plus icon and then Click on Insert Code to insert your Code.Then Everyone can understand your question and can answer you.