318 Posted Topics

Member Avatar for extemer

First of all, your closing braces are not there, So I don't even know how it is compiling. So fix that, it is probably your problem. [CODE]class printing{ public static void main(String[] args){ for(int i=1; i<=10; i++) { for(int j=1;j<=5;j++) { System.out.print("@"); System.out.print(""); } } } }//you didn't close the …

Member Avatar for jon.kiparsky
0
135
Member Avatar for ScientificLyriX

>>Do I have to buy a "program/software" that makes programs? If so what are some of the basic ones/ or well known ones? Im guessing they are pretty expensive? [b]There are many free programs out there called an IDE(integrated development environment) and also some IDE's which require you to buy …

Member Avatar for ocmseo
0
76
Member Avatar for shubhankarmayan

Nobody will do the assignment for you. Attempt it yourself, and if you still require help, paste what you have so far here.

Member Avatar for prvnkmr449
0
434
Member Avatar for TheSecOrg
Member Avatar for TheSecOrg
0
253
Member Avatar for kumpul101

[QUOTE=kumpul101;1326512]hey there! i have this code... [CODE]import java.io.*; public class charat{ public static void main (String args [])throws IOException{ BufferedReader in = new BufferedReader (new InputStreamReader (System.in)); System.out.print("Enter First Name: "); String fname = in.readLine(); System.out.print("Enter Middle Name: "); String mname = in.readLine(); System.out.print("Enter Last Name: "); String lname = …

Member Avatar for tux4life
0
216
Member Avatar for GooeyG
Member Avatar for gopi17

It seems you want the btnOk button to bring you to a new 'menu' with the 'logout'etc. You dont have a frame in the OptionWindow class that I can see. You need to create a frame and add all those things to it. Then its just a matter of hiding …

Member Avatar for NormR1
0
11K
Member Avatar for Dragnar

I understand completely, what you need to do first is Give [b]yourself[/b] an assigment that you [b]know[/b] you should be able to complete with what you know so far. If you practice what you have learnt in your own way it is much more fun to program and you will …

Member Avatar for Dragnar
0
183
Member Avatar for churva_churva

churva churva, can you please tell me where/how you are learning java? Are you self studying or being tutored? Or are you in an institute?

Member Avatar for Akill10
0
165
Member Avatar for churva_churva

You are creating a separate array for each variable, You could do that much easier by creating another class called Employee with age,firstname,lastname,address as the arguments. e.g. [code]Public class Employee(age,empFirst,empLast,empAddr) { }[/code] This way, you would only need to make 1 Array, but this array would be an array of …

Member Avatar for peter_budo
0
221
Member Avatar for jigglymig1

Stab in the dark here but would [code] String num; for (i=1; i < 6; i++) { if ("num"+i < 0) neg = neg + 1; if ("num"+i == 0) zero = zero + 1; if ("num"+i > 0) pos = pos + 1; }[/code] would this work?

Member Avatar for Momerath
0
201
Member Avatar for churva_churva

If you are new to java, and have not covered GUI's yet, then one of the easier options of doing a menu is with a switch. First thing is first, you need to create a class from which you can create an instance of the object, until you have that …

Member Avatar for jon.kiparsky
0
493
Member Avatar for kamunyu ndungu

It seems you are interested in making a flash based website. [url]http://www.w3schools.com/flash/default.asp[/url] This is a very good website for beginner web developers. It covers all aspects of web development. Good Luck!

Member Avatar for Akill10
0
79
Member Avatar for Pushpasheela
Member Avatar for Akill10
0
80
Member Avatar for Hazel101

There is no point in pouring all your ideas out onto this forum, where I am sure there are many qualified and capable people who will use the idea for themselves. You should do what was said above, try to get your idea as polished as you can. Be that …

Member Avatar for LVHSJ
0
195
Member Avatar for Akill10

Hello everyone, just want to introduce myself. I am in the 2nd year of a games development course in Ireland. So far I have basic knowledge in C++, C#, Java, Javascript and HTML. I Joined this site in the hope I can learn a lot from the experts and study …

Member Avatar for redesignunit
0
96
Member Avatar for TheSecOrg

I dont think it is necessary to have 2 separate scanners. But anyway, what you are doing there seems to me like you are asking if a scanner variable called 'one' is equal to a number which doesn't make sense. I'm not 100% sure but maybe try: Instead of having …

Member Avatar for TheSecOrg
0
200
Member Avatar for extemer

The only way that sentence makes sense is: I want the value assigned to form1, in the start method, to get called in main but not call the whole method. I could be way off though as it sounds....

Member Avatar for coil
0
103

The End.