第31300题 单选题
以下C++代码执行后,printf的输出结果正确的是?
#include <cstdio>
int main() {
    char ch = 'A';
    float score = 95.5f;
    printf("%d %.2f", ch, score);
    return 0;
}
A

65 95.50

B

A 95.50

C

65 95.5

D

编译报错,无法运行

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析