Q:

Ruby program to convert an integer number into a string

belongs to collection: Ruby Basic Programs

0

In this program, we will create an integer variable with some value. Then we will convert an integer number into the string using the to_s() function.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to convert an integer number into the string is given below. The given program is compiled and executed successfully.

# Ruby program to convert an 
# integer number into string

num = 10;
result = num.to_s();  

print "String: ",result;

Output:

String: 10

Explanation:

In the above program, we created a variable num initialized with 10. Then we converted the integer number into the string using the to_s() function and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to convert a number into a rational n... >>
<< Ruby program to initialize and print a complex num...