×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to convert an integer number into a string

Last Updated : December 15, 2025

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 »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.