0
Java won't run
class MyClass { public static void main(String[ ] args) { System.out.println("Hey I'm Eunice"); } } Now that's my code but it wont run coz every time i go to Run As (on Eclipse) it it tells me none applicable. What could be the issue?
3 ответов
+ 2
"
right click on the project folder in Package Explorer > Properties > Java Compiler then check the Enable project specific settings and then Change the settings below to the compiler compliance level of 1.5 or higher in order for this code above to work.
"
-Stackoverflow
http://stackoverflow.com/questions/24218802/eclipse-java-printf-issue-printstream-is-not-applicable
+ 1
Click on the Myclass in the class browser window in eclipse then click run
+ 1
Thank you. It worked.