0
who can tell how to output to a string using a (for) loop?
for (int g = 0; g < yards; g++ ) { Console.WriteLine ("Ra!"); }
3 Antworten
+ 2
Probably you want to display those Ra! on the same line:
Use:
Console.Write("Ra!");
+ 1
Thanks maaaaaaaan
0
Gleb You're welcome.