general confused about java question (easy!)
I was writing all my little java programs in eclipse, and I thought I would try messing around with netbeans. But nothing I write in netbeans seems to be recognised. I noticed there is no "run" method in netbeans default template either, but there is a "main".
I realise some will take this as a silly question, but im doing this on my own, and have no teachers or peers to ask the dumb questions to.
Can someone please explain the difference between say:
Code:
println ("the average of all the test scores is " + total / count + "." );
(which is not recognised by nebeans)
and
Code:
System.out.println("the average of all the test scores is " + total / count + "." );
(which is)
and why are they different?
Also when i try to import .acm libraries into my netbeans code, they are not recognised as they are in eclipse.
ps sorry for sounding retarded. :confused: