Use loops to produce the beautyofmath shown.The script should iterate from 1 to 11 to produces expression on the left, and perform specified operation to get the results shown on the right.
6 次查看(过去 30 天)
显示 更早的评论
1x8+1=9
12x8+2=98
123x8+3=987
1234x8+4=9876
12345x8+5=98765
123456x8+6=987654
1234567x8+7=9876543
12345678x8+8=98765432
123456789x8+9=987654321
1234567900x8+10=9876543210
12345679011x8+11=98765432099
could you help me check where is wrong?
1 个评论
Bob Thompson
2018-4-18
编辑:Bob Thompson
2018-4-18
Could you post your code, not just the results?
Or is the picture your code and result?
回答(1 个)
Bob Thompson
2018-4-18
You need to add the previous 'value' to the sum of your powers of 10 for each step in p. I would suggest doing this by turning power10 into an array and then using sum(power10).
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!