a. Create an array containing numbers from 1 to 50: Use the following line of code:
int nums[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50};
b. Initialize a variable called i to zero.
c. If i is less than the length of nums, then for each element nums[i] in the array nums,
check if nums[i] is divisible by 3
if no, print nums[i] on the serial monitor
add 1 to i
d. You should use the expression: nums[ i ] % 3 != 0 for Step 3 c.