以下程序运行后的输出结果是#include <stdio.h> int main() {      int a;      int c=10;     float f=100.0;  &

gebilaowang 12

以下程序运行后的输出结果是#include <stdio.h>
int main()

    int a; 
 

   int c=10;
    float f=100.0; 
    double x;
    a=f/=c*=(x=6.5);
    printf("%d,%d,%3.1f,%3.1f",a,c,f,x);
    return 0;
}

A:1,65,1.5,6.5
B:1,65,1,6.5
C:1,65,1.0,6.5
D: 2,65,1.5,6.5
答案: 【1,65,1.5,6.5

本门课程完整答案:点击这里,查看 2016 2016秋C语言程序设计(苏小红)(哈尔滨工业大学) 》中国大学mooc慕课答案2025年版

数据来源:网课题库


点击下方答案目录,3秒找到你想要的答案


分享