Rust program to calculate the sum of the digits of a given number using recursion

Rust | Sum of Digits Example: Given a number, we have to find the sum of its digits using the recursion function.
Submitted by Nidhi, on October 11, 2021

Problem Solution:

In this program, we will create a recursive function to calculate the sum of all digits of a given number using recursion and return the result to the calling function.

Program/Source Code:

The source code to calculate the sum of the digits of a given number using recursion is given below. The given program is compiled and executed successfully.

// Rust program to calculate the 
// sum of the digits of given number 
// using recursion

unsafe fn SumOfDigits(num:i32)->i32 {
	static mut sum:i32=0;
	if num > 0 {
		sum += (num % 10);
		SumOfDigits(num / 10);
	}
	return sum;
}

fn main() 
{
    unsafe{
        let res=SumOfDigits(1234);
        println!("Sum of digits are: {}",res);
    }
}

Output:

Sum of digits are: 10

Explanation:

In the above program, we created two functions SumOfDigits() and main(). The SumOfDigits() function is a recursive function, which is used to calculate the sum of the digits of the given number and return the result to the calling function.

In the main() function, we called SumOfDigits() function and printed the result.

Rust Functions Programs »





Comments and Discussions!

Load comments ↻





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