Im writing a prog. and am using the System.out.println("") command. and i
want to have seven lines of identical text with out repeating this command
seven times and was wondering how to acomplish this..
Jason
Printable View
Im writing a prog. and am using the System.out.println("") command. and i
want to have seven lines of identical text with out repeating this command
seven times and was wondering how to acomplish this..
Jason
put it in a loop
for (int i = 0;i<7;++i)
System........... (whatever);
AKO
"beginner" <dupy6@yahoo.com> wrote:
>
>Im writing a prog. and am using the System.out.println("") command. and
i
>
>want to have seven lines of identical text with out repeating this command
>seven times and was wondering how to acomplish this..
>
>Jason