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 trial

Java

Matei Soare
Matei Soare
7,204 Points

How can we repeat the same variable twice in a row if the program cycles through the variables?

For example:

%s(1) is interesting and %s(1) is beautiful, even better than %s(2).

1 Answer

You mean like this:

System.out.printf("%s(1) is interesting and %s(1) is beautiful, even better than %s(2).", variable1, variable1, variable2);

You can repeat variables as long as you include the variable for each %s you use.

Matei Soare
Matei Soare
7,204 Points

Thank you very much!