问题 填空题

以下程序运行后的输出结果是______。
#include<stdio.h>
main()
int a=37;
a%=9;printf("%d\n",a);

答案

参考答案:A

解析: 37对9求余数其值等于1。

单项选择题
多项选择题