66 . 下列程序的运行结果是()
来源: 计算机网络技术基础试题库
66 . 下列程序的运行结果是()
#include<stdio.h>
main() { int n=0,x,i;
for(x=3;x<=9;x+=2)
if(x%3==0)
{ i=1;
while(i<=3)
{ printf(“%d”,x);
i++; }
n++;
printf("\n"); }
printf(“%d”,n); } [单选题] *
A.3336669993
B.3339992
C.3336669992
D.3339993