设有定义: int n = 1234; double x = 3.1415; 则语句: printf("%3d,%1.3f\n", n, x); 的输出结果是 A) 1234,3.141 B)123,3.142 C) 1234,3.142 D)123,3.141
答案:C