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

五、数据类型:整数&&带小数点的数

时间:2018-05-12 02:43:58      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:stdio.h   ble   include   bsp   style   printf   inf   ...   col   

1、整数

int

printf("%d",...);

scanf("%d",&...);

 

2、带小数点的数

double 

printf("%f",...);

scanf("%lf",&..);

 

 

#include<stdio.h>

int main()
{
    
   printf("请分别输入身高的英尺和英寸,如输入5 7表示5英尺7英寸:");
   
   double foot;
   double inch;
   
   scanf("%lf %lf",&foot,&inch);
   
   printf("身高是%f米。\n",(foot+inch/12)*0.3048);
     
    return 0;
 } 

技术分享图片

 

五、数据类型:整数&&带小数点的数

标签:stdio.h   ble   include   bsp   style   printf   inf   ...   col   

原文地址:https://www.cnblogs.com/Strugglinggirl/p/9026786.html

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