为了账号安全,请及时绑定邮箱和手机立即绑定

求指导,哪错了

#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("%1f\n",d);

    return 0;    

}


正在回答

3 回答

同学你应该是没有使用英文输入状态下的分号“;”,而用了中文输入状态的分号“;”。

0 回复 有任何疑惑可以回复我~

#include <stdio.h>
int main()
{
    char c = 'a';
    int n =  c;       //将c赋值给n
    float f =  c;     //将c赋值给f
    double d = n;     //将c赋值给d
    printf("%d\n",n);
    printf("%f\n",f);
    printf("%lf\n",d);
    return 0;   
}

0 回复 有任何疑惑可以回复我~

应该是你的后面分号有问题,找一找

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

求指导,哪错了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信