注意:此页面搜索的是所有试题
下列程序的运行结果是( )。

#include <stdio.h>

int main()

{

int a=2,b=5;

printf("a="%d,b=%d\n",a,b);

return 0;

}



得分/总分

A.
a=d, b=d


B.
a=2, b=5

2.00/2.00

C.
a=%2, b=%5


D.
a=%d, b=%d

参考答案