单项选择题

下述程序段的执行结果是 ( )
#include<stdio.h>
void main()
int x;
for(x=1; x<=100; x++)
if(++x%3==0)
if(++x%4==0)
if(++x%7==0)
printf("%d",x);

A.75
B.76
C.77
D.84