Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRobert Morea
4,040 PointsSomething simple?
OK, so...I am at the last step of IntelliJ IDE setup.
I am pretty sure my code is correct.
I click on run and I get a window open up offering me "Edit Configurations." I tried messing with configurations to no avail.
What am I missing?
import java.util.*;
public class Messy {
public static void main(String[] args){
System.out.println("five");System.out.println("one");
System.out.println("six");
System.out.println( "four" ); System.out.println("two");
Please comment out this line and
this line as well with a hotkey that does multi-line commenting
List<String> numberWords = Arrays.asList("six", "seven", "eight", "nine");
for (String numberWord: numberWords) {
// Use the sout shortcut to write out numberWord;
}
}}
Jeremy Hill
29,567 PointsAre you supposed to be reformatting the code to clean it up? You can click on the tab at the top that says code and click on reformat and then copy and paste your code into results.txt. I believe that is what you are supposed to do.
1 Answer
Robert Morea
4,040 PointsOK, so I deleted the project and redid everything the same (as far as I can tell) but this time it worked. I must have messed something up without realizing it. Hopefully it doesn't happen again.
Robert Morea
4,040 PointsRobert Morea
4,040 PointsOh, by the way...the attached code is not my corrected code in IntelliJ...