Saptarshi Neogi
Followers: 0 Following: 0
Statistiques
0 Questions
2 Réponses
10 Fichiers
Cody0 Problèmes
7 Solutions
RANG
12 544
of 295 569
RÉPUTATION
4
CONTRIBUTIONS
0 Questions
2 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
1
RANG
3 016 of 20 247
RÉPUTATION
532
CLASSEMENT MOYEN
5.00
CONTRIBUTIONS
10 Fichiers
TÉLÉCHARGEMENTS
66
ALL TIME TÉLÉCHARGEMENTS
4605
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
1 Public Chaîne
CLASSEMENT MOYEN
50
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
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));%...
environ 4 ans il y a | 0
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...
environ 4 ans il y a | 1