photo

Mayur Lad


Last seen: alrededor de 2 años hace Con actividad desde 2020

Followers: 0   Following: 0

Estadística

All
  • Solver
  • First Answer
  • Explorer

Ver insignias

Feeds

Ver por

Resuelto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

más de 4 años hace

Respondida
Counting the number of digits
x=input('Enter number: '); disp(x) sum= 0; while x > 0 t = mod(x,10); sum= sum+1; x = (x-t)/10; end...

más de 4 años hace | 0