Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C에서 센티미터를 피트와 인치로 변환하는 프로그램

<시간/>

길이를 센티미터로 입력하면 주어진 길이를 피트와 인치로 변환하는 작업입니다.

우리는 이것을 위해 길이 변환 공식을 사용할 수 있습니다 -

1 feet = 30.48 cm
1 inche = 2.54 cm

예시

Input-: centimetre = 100
Output -: Length in meter = 3m
   Length in Kilometer = 0.003km

알고리즘

Start
Step 1 -> Declare function to perform conversion
   double convert(int centimeter)
      set double inch = 0.3937 * centimetre
      set double feet = 0.0328 * centimetre
      print inch and feet
Step 2 -> In main()
   Declare and set int centimetre=20
   Call convert(centimetre)
Stop

예시

#include <stdio.h>
// Function to perform conversion
double convert(int centimeter){
   double inch = 0.3937 * centimeter;
   double feet = 0.0328 * centimeter;
   printf ("Inches is: %.2f \n", inch);
   printf ("Feet is: %.2f", feet);
   return 0;
}
// Driver Code
int main() {
   int centimeter = 20;
   convert(centimeter);
   return 0;
}

출력

Inches is: 7.87
Feet is: 0.66