여기서는 센티미터로 표시되는 길이를 피트와 인치로 변환하는 방법을 알아봅니다.
다음은 cm를 피트와 인치로 변환하는 데 도움이 되는 두 가지 공식입니다.
자바 if문
- 1인치 = 2.54센티미터
- 1피트 = 30.48센티미터
이 공식에서 다음 두 가지 공식을 찾을 수 있습니다.
- 인치 = 0.3937 * 센티미터(cm)
- 피트 = 0.0328 * 센티미터(cm)
프로그램 1: cm를 피트와 인치로 변환하는 프로그램을 C로 작성합니다.
#include int main() { int centimeter = 40; double inch, feet; inch = 0.3937 * centimeter; feet = 0.0328 * centimeter; printf ('Inches is: %.2f ', inch); printf ('Feet is: %.2f', feet); return 0; }
산출:
Inches is: 15.75 Feet is: 1.31
프로그램 2: cm를 피트와 인치로 변환하는 프로그램을 PHP로 작성합니다.
<?php // This is a PHP program which converts the centimeter length to feet and Inches $cen = 10; $inch = 0.3937 * $cen; $feet = 0.0328 * $cen; echo('Inches is: ' . $inch . ' '); echo('Feet is: ' . $feet); ?>
산출:
q1 q2 q3 q4
Inches is: 3.94 Feet is: 0.33
프로그램 3: cm를 피트와 인치로 변환하는 프로그램을 Java로 작성합니다.
// This is a Java program which converts centimeter length to feet and Inches import java.io.*; class convert { static double Conversion_length(int centimeter) { double inch, feet; inch = 0.3937 * centimeter; feet = 0.0328 * centimeter; System.out.printf('Inches is: %.2f ', inch); System.out.printf('Feet is: %.2f', feet); return 0; } public static void main(String args []) { int centimeter = 20; Conversion_length(centimeter); } }
산출:
Inches is: 7.87 Feet is: 0.656
프로그램 4: cm를 피트와 인치로 변환하는 프로그램을 Python으로 작성합니다.
# This is a Python program which converts centimeter length to feet and Inches centimeter=int(input('Enter the height in centimeters:')) #convert centimeter to inches inches = 0.394 * centimeter #convert centimeter to feet feet = 0.0328 * centimeter print('The length in feet',round(feet,2)) print('The length in inches',round(inches,2))
산출:
Enter the height in centimeters: 167 The length in feet 5.48 The length in inches 65.8