以下程序运行后的输出结果是【 】。 main( ) { int x=15; while(x>10 &&x

admin2005-03-15  22

问题 以下程序运行后的输出结果是【 】。
main( )
    {  int x=15;
    while(x>10 &&x<50)
    {  x++;
    if(x/3){ x++;break;}
    else continue;
    }
    printf("%d\n",x);
    }

选项

答案17

解析
转载请注明原文地址:https://kaotiyun.com/show/HeHp777K
0

相关试题推荐
随机试题
最新回复(0)