Home »
Ruby »
Ruby Programs
Ruby program to convert an integer number into a string
Ruby Example: Write a program to convert an integer number into a string.
Submitted by Nidhi, on December 10, 2021
Problem Solution:
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.
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.
Ruby Basic Programs »