问答详情
源自:2-8 自动类型转换

为什么通过不了?

#include <stdio.h>

int main()

{

    char c = '97';

    int n =c;     //将c赋值给n

    float f =c;   //将c赋值给f

    double d =c;    //将c赋值给d

    printf("%d\n",n);

    printf("%f\n",f);

    printf("%lf\n",d);

    return 0;    

}


提问者:慕田峪8474555 2017-11-29 19:20

个回答

  • 慕用927923
    2017-11-30 22:50:30
    已采纳

    刚才回答错了,你应该把char那行改为char c=97

  • qq_我的晴天在哪里_0
    2018-01-20 15:41:35

    #include <stdio.h>

    int main()

    {

        char c = 'a';

        int n=c ;       //将c赋值给n

        float f =c;    //将c赋值给f

        double d =c; //将c赋值给d

        printf("%d\n",n);

        printf("%f\n",f);

        printf("%lf\n",d);

        return 0;    

    }

    哪里有问题?

  • 慕神7578510
    2017-12-03 10:54:49

    97是字符?

  • 慕哥0928960
    2017-12-01 21:15:28

    重置一下代码

    {
        char c = 'a';
        int n = c;     //将c赋值给n
        float f = c;    //将c赋值给f
        double d = c;   //将c赋值给d
        printf("%d\n",n);
        printf("%f\n",f);
        printf("%lf\n",d);
        return 0;   
    }

  • 慕用927923
    2017-11-30 22:33:02

    你少了一行,沒有把其它几个字符输进去

  • 慕雪328363
    2017-11-29 19:33:57

    你尝试把10行的%If写正确试试