Given a 2 dim array write a VB PROGRAM that will add all odd numbers greater than 3. This is my solution but am not that sure so assist me.
if( number % 2 == 1)
____number is odd
else
____number is even
so checking if it's odd and greater than 3 goes like this:
if(number%2==1 && number>3)