📄 inchtocm.c
字号:
/* * File: inchtocm.c * ---------------- * This program reads in a length given in inches and converts it * to its metric equivalent in centimeters. */#include <stdio.h>#include "genlib.h"#include "simpio.h"main(){ double inch, cm; printf("This program converts inches to centimeters.\n"); printf("Length in inches? "); inch = GetReal(); cm = inch * 2.54; printf("%g in = %g cm\n", inch, cm);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -