问题 填空题

以下程序运行后输出结果是 【7】 。  #include   main()  { int a=37;   a%=9; printf("%d\n",a);  }

答案

参考答案:1

解析:【解析】函数较简单,是取余运算:给a赋值为37%9,余1。

问答题 简答题
单项选择题