Hello, I was hoping to get step-by-step help to get this homework assignment done. My teacher is asking the class to have the processing code print out odds numbers between 100 to 200 that can not be divided by 3. From what I understand int i should be 100 and i <= should be 200. If not please correct me if I am wrong. I do understand && but I am not sure if I have to input I with a modulus or something different. I really appreciate the feedback, understanding, and help.
for(int i= 100; i<=200; i++)
{
if( && )
{
print(i +" ");
}
}