photo

Mayur Lad


Last seen: 2 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

All
  • Solver
  • First Answer
  • Explorer

查看徽章

Feeds

排序方式:

已解决


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

4 years 前

已回答
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...

4 years 前 | 0