问答详情
源自:6-12 综合练习

解析一下步骤 谢谢

#include <stdio.h>

int main()

    int x;

    x=6;

    

  scanf("%d",&x);

  if(x-->5) printf("%d\n",x);

  else

  printf("%d\n",++x); 

  return 0;

    

}


提问者:陈博文233 2020-02-25 18:15

个回答

  • 陈博文233
    2020-02-25 18:15:38

    为什莫输出5