photo

Cade


Last seen: 3 Monate vor Aktiv seit 2024

Followers: 0   Following: 0

Statistik

Feeds

Anzeigen nach

Frage


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

5 Monate vor | 2 Antworten | 0

2

Antworten