1 から 100 までの間に, 7の倍数はいくつあるか求めよ.
以下に考えるためのポイントを列挙する.
if((x % 7) == 0){ ... }
int count;
count = 0;
if(条件){ count = count + 1; }