c語言英尺
1. c語言中輸入厘米換算成英尺和英寸:例如輸入163:輸出:5英尺4.17323英寸:
到底什麼意思啊根據你的條件厘米數/2.54就等於英寸數了阿厘米數/(2.54*12)不就等於英尺了阿這還需要貼代碼???
2. C語言中關於英尺、英寸、厘米的換算
(foot+inch/12)*0.3048 = cm / 100
foot+inch/12 = cm / (100 * 0.3048) = cm / 30.48
因為1foot = 12inch,所以inch / 12 < 1,所以foot = cm/30.48的整數部分 inch / 12 = cm/30.48的小數部分。
六七行就是完成這個功能。
(2)c語言英尺擴展閱讀:
一、英尺和英寸的知識
1、1碼 = 3英寸 ,1英尺 = 12 英寸;
2、碼英文字母是 yard
3、英尺英文字母是 foot( 單數 ) feet( 復數 )
4、英寸英文單詞是 inch ( 單數 )inches( 復數 )
二、長度單位轉換
#include<stdio.h>
#define Mile_to_meter 1609 //1英里 = 1690米
#define Foot_to_centimeter 30.48 //1英里 = 1690米
#define Inch_to_centimeter 2.54 //1英里 = 1690米
int main(){
float mile, foot, inch;
scanf("%f%f%f", &mile, &foot, &inch);
printf("%fmiles = %f meters ", mile, mile * Mile_to_meter);
printf("%ffeet = %f centimeters ", foot, foot * Foot_to_centimeter );
printf("%finches = %f centimeters ", inch, inch * Inch_to_centimeter );
return 0;
}
3. 用C語言編寫一個輸入身高(cm)輸出身高英寸
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
int main()
{
float height = 0;
float re = 0;
printf("請輸入身高單位是厘米 \n");
scanf("%f", &height);
re = height / 2.54;
printf("身高為 %f英寸 ", re);
system("pause");
}
這個在vs2013下測試通過了,英寸和厘米的換算是一英寸等於2.54厘米所以變數全部是float類型。
4. 求英尺和英寸轉化成厘米C語言
#include <stdio.h>
void main()
{
float ych,yc,lm;
printf("本程序將完成英尺和英寸轉換為厘米\n");
printf("請輸入英尺數目:");
scanf("%f",&ych);
printf("請輸入英寸數目:");
scanf("%f",&yc);
lm=ych*30.48+yc*2.54;
printf("\n%.0f英尺%.0f英寸摺合為:%.2f厘米",ych,yc,lm);
}
5. c語言中想要把英尺轉換成米,但總是不成功
scanf("%d",&tall);//注意tall前加 &
6. C語言厘米轉換英尺
#include
void
main()
{
float
ych,yc,lm;
printf("本程序將完成英尺和英寸轉換為厘米\n");
printf("請輸入英尺數目:");
scanf("%f",&ych);
printf("請輸入英寸數目:");
scanf("%f",&yc);
lm=ych*30.48+yc*2.54;
printf("\n%.0f英尺%.0f英寸摺合為:%.2f厘米",ych,yc,lm);
}
請採納答案,支持我一下。
7. C語言:厘米換算英尺英寸
#include<stdio.h>
intmain()
{
intcm,foot,inch;
doublemeter;
scanf("%d",&cm);
meter=cm/100.0;
inch=12*meter/0.3048/145;
foot=inch/12;
inch=inch%12;
printf("%d%d",foot,inch);
return0;
}
這樣寫吧,編輯器把你的double當成強制轉換來看了
8. 用C語言編寫身高單位轉換:鍵盤輸入一個英制身高(幾英尺幾英寸),計算對應的公
你是問英制轉公制:
一、公式1英尺=12英寸,1英寸=2.54厘米。
二、定義兩個浮點數變數表示英尺和英寸,輸入後,套上面公式算即可。
比如:
#include<stdio.h>
int main()
{
float feet,inch,meter;
printf("輸入身高英尺 英寸:");
scanf("%f%f",&feet,&inch);
meter=(feet*12+inch)*2.54*100;
printf("轉換後%f米\n",meter);
return 0;
}
//ps:手機打代碼,自行退格調整對齊。