<please help me in lesson 12 exercise 1 no. 4 im stucked..>

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<In what way does your code behave incorrectly? Include ALL error messages.>

```

Replace this line with your code.

<do not remove the three backticks above>

Ok so if you are on the Intro to Java Lesson 12 Generalizations Exercise 1 Number 4.) Set the int variable epicLevel equal to awesomeLevel multiplied by 2. then I think I can help you! :smiley:

int epicLevel (set the variable)
= int awesomeLevel (set it equal to another variable)
* 2 (times it by two!)

So all in all your code for this particular number should be like the following:

int epicLevel = int awesomeLevel * 2;	

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.