photo

Mayur Lad


Last seen: mehr als ein Jahr vor Aktiv seit 2020

Followers: 0   Following: 0

Statistik

All
  • Solver
  • First Answer
  • Explorer

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


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

mehr als 3 Jahre vor

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

fast 4 Jahre vor | 0