photo

Cade


Last seen: 11 days 前 自 2024 起处于活动状态

Followers: 0   Following: 0

统计学

Feeds

排序方式:

提问


I need to write a code to find numbers divisible by 7 and multiples of 5 from 1500:2700. How do I preallocate line 4 for speed and is my code the most efficient way to solve
result = []; for num = 1500:2700 if mod(num, 7) == 0 && mod(num, 5) == 0 result = [result, num]; end end d...

2 months 前 | 2 个回答 | 0

2

个回答