新手求给位大神解答
1. 单位换算【问题描述】
已知1英寸=25.4毫米,请你写一个方便的小工具,将输入的英寸数(大于0)换算成厘米
数。
输入:要转换的英寸数(大于0)
输出:转换后的厘米数(保留两位小数)
要求:使用scanf与printf
【样例输入】
11.1
【样例输出】
28.19
#include <stdio.h> int main( void ) { double inch; scanf( "%lf", &inch ); printf( "%.2lf\n", inch*2.54 ); }