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

这样写错误在哪

#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;    

}


正在回答

3 回答

语句后面要加分号

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

。。你的分号呢骚年

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

你漏写分号了吧? int n =  c    ;   //将c赋值给n

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

    double d =  c ;

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

举报

0/150
提交
取消

这样写错误在哪

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