photo

Mayur Lad


Last seen: plus d'un an il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

All
  • Solver
  • First Answer
  • Explorer

Afficher les badges

Feeds

Afficher par

A résolu


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:...

plus de 3 ans il y a

Réponse apportée
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...

presque 4 ans il y a | 0