Community Profile

photo

Saptarshi Neogi


Last seen: 1 year ago Active since 2020

Followers: 0   Following: 0

Message

Statistics

All
  • Personal Best Downloads Level 3
  • 5-Star Galaxy Level 4
  • First Answer
  • GitHub Submissions Level 2
  • Solver
  • First Submission

View badges

Feeds

Answered
I want to write a recursive Function that can calculate the sum of all the digit. If the input is 12345 then the answer will be 1+2+3+4+5 , without using string2num and loop.
You can do this with any inbuit functions. function x = digit_sum(n) x=0; if n>0 x=mod(n,10)+digit_sum(floor(n./10));%...

3 years ago | 0

Answered
Create a program that asks a user to input a number and then finds the sum of digits of the number using recursion. for example 341 = 3+4+1 = 8
% This program does not require any inbuilt functions. function x = digit_sum(n) x=0; if n>0 x=mod(n,10)+digit_sum(floor...

3 years ago | 1