标签:stdio.h ble include bsp style printf inf ... col
int printf("%d",...); scanf("%d",&...);
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