正确答案是:C: 3.14 3
### 分析
在给定代码中,`x` 被赋值为 `3.1415926`。接下来使用了两个 `round()` 函数:
1. **`round(x, 2)`**
这个函数用于将浮点数 `x` 四舍五入到小数点后 2 位。因此,`round(3.1415926, 2)` 会输出 `3.14`。
2. **`round(x)`**
在没有指定小数点后位数的情况下,`round(x)` 默认将 `x` 四舍五入到距离 `x` 最近的整数。因此,`round(3.1415926)` 会输出 `3`。
综上所述,代码 `print(round(x,2) ,round(x))` 的输出为 `3.14 3`。这就是选项 C。