+ 3
How i can to print the same message 243 times? (Java)
Without cycles
5 ответов
+ 20
One option is to use print 243 times or you can do something like this :
https://code.sololearn.com/cK0C2jYPL7cb/?ref=app
+ 18
https://code.sololearn.com/cgeyYwFZ63WS/?ref=app
+ 17
Without loops, recursion...without any cycles 😊
https://code.sololearn.com/cb8wIQk7se9V/?ref=app
+ 2
if loops or recursion is not allowed then you could assign a string = message and then system. out. println(string) 243 times.
0
but, how I can to do it just using methods?