w3resource

Ruby Basic Exercises: Print a specified character twenty times

Ruby Basic: Exercise-32 with Solution

Write a Ruby program to print a specified character twenty times.

Ruby Basic Exercises: Print a specified character twenty times

Ruby Code:

puts '*'*20
puts '#'*20
puts '@'*20

Output:

********************
####################
@@@@@@@@@@@@@@@@@@@@

Flowchart:

Flowchart: Print a specified character twenty times

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous:Write a Ruby program to retrieve the total marks where subject name and marks of a student stored in a hash.
Next: Write a Ruby program to test whether a year is leap year or not.

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/ruby-exercises/basic/ruby-basic-exercise-32.php