<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
What I’m doing wrong in 5/12 I tried to put this int before system.out.println and after and at the end insted of it, bt unfortunately still got error:).
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/learn-java/lessons/introduction-to-java/exercises/variables
Step#1
<In what way does your code behave incorrectly? Include ALL error messages.>
Did you set the myNumber
variable equal to 42?
public class DataTypesC {
public static void main(String args) {
int myNumber = 42;
}
}
<do not remove the three backticks above>