×

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 demonstrate the Math.erf() function

Last Updated : December 15, 2025

Problem Solution

In this program, we will read a number from the user using gets.chomp.to_f. Then we will find the error function value of the given number.

Program/Source Code

The source code to demonstrate the Math.erf() function is given below. The given program is compiled and executed successfully.

# Ruby program to demonstrate the 
# Math.erf() function

print "Enter number: ";
num = gets.chomp.to_f;  

result = Math.erf(num);
print "Result: ",result;

Output

Enter number: 2.32
Result: 0.998965512573224

Explanation

In the above program, we read a floating-point number from the user using gets.chomp.to_f and got the error function using Math.erf() 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.