• 2022-05-28
    设有程序段: int x=0,s=0;while(!x!=0) s+=++x;cout输出( )。
    A: 运行程序段后输出1
    B: 程序段中的控制表达式是非法的
    C: 程序段执行无限次
    D: 运行程序段后输出0
  • A

    内容

    • 0

      对下面程序段描述正确的是 ______. int x=0,s=0; while (!x!=0) s+=++x; printf("%d",s);

    • 1

      中国大学MOOC:设有以下程序段intx=0,s=0;while(!x!=0)s+=++x;printf(%d,s);则。

    • 2

      有如下程序段 int x=4; do { printf("%d",x); x=x-2; }while(x>=0); 该程序段的输出结果是______。

    • 3

      假定所有变量均已正确说明,以下程序段运行后的输出结果是 。int x=0; do { x= -1*x; }while(!x);

    • 4

      中国大学MOOC: 设有以下程序段int x=0,s=0; while(!x!=0) s+=++x; printf(%d,s);则下面描述中正确的是 。