I saw this keyword for the first time and I was wondering if someone could explain to me what it does.
continue
Let's see an example:
int sum = 0; for(int i = 1; i <= 100 ; i++){ if(i % 2 == 0) continue; sum += i; }
This would get the sum of only odd numbers from 1 to 100.