码迷,mamicode.com
首页 > 其他好文 > 详细

printf不支持%lf

时间:2014-10-08 01:41:54      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   sp   div   c   log   

 1 #include <stdio.h>
 2 
 3 int square137(int n);
 4 
 5 void p137() {
 6     double x = 3.0;
 7     int y = (int)x;
 8     printf("Square of %f is %d\n", x, square137(y));
 9 }
10 
11 int square137(int n) {
12     return n * n;
13 }

如果你吧%f改为%lf的话,输出就会出乎你的意料,试试便知

printf不支持%lf

标签:style   blog   color   io   ar   sp   div   c   log   

原文地址:http://www.cnblogs.com/qrlozte/p/4010290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!