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

代码显示问题

各位同学前辈,我这个代码运行显示正确,但是显示的都是乱码是怎么回事?

#include

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;   


显示结果: 

/249/5117/8r7b/hello.c: In function 'main':
/249/5117/8r7b/hello.c:6:5: error: expected ',' or ';' before 'float'
    float f = c       //将c赋值给f
    ^
/249/5117/8r7b/hello.c:9:19: error: 'f' undeclared (first use in this function)
    printf("%f\n",f);
                  ^
/249/5117/8r7b/hello.c:9:19: note: each undeclared identifier is reported only once for each function it appears in
/249/5117/8r7b/hello.c:10:20: error: 'd' undeclared (first use in this function)
    printf("%lf\n",d);

正在回答

3 回答

char是定义单个字符,用单引号引起来

输出语句后面要有分号

http://img1.sycdn.imooc.com//5823404a000179e709490594.jpg

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

谢谢!

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

我怎么感觉你每个赋值后面应该是要加分号的吧

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

举报

0/150
提交
取消
C语言入门
  • 参与学习       926019    人
  • 解答问题       20793    个

C语言入门视频教程,带你进入编程世界的必修课-C语言

进入课程

代码显示问题

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