Itt megtudjuk, hogyan lehet a centiméterben megadott hosszt lábban és hüvelykben kifejezett hosszra konvertálni.
A következő két képlet segít átváltani a cm-t lábra és hüvelykre:
java egész számot karakterláncba
- 1 hüvelyk = 2,54 centiméter
- 1 láb = 30,48 centiméter
Ezekből a képletekből a következő két képletet találjuk:
- hüvelyk = 0,3937 * centiméter (cm)
- láb = 0,0328 * centiméter (cm)
1. program: Írjon egy programot C nyelven a cm-ek lábra és hüvelykre való konvertálására.
#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; }
Kimenet:
Inches is: 15.75 Feet is: 1.31
2. program: Írjon PHP-ben egy programot a cm-ek lábra és hüvelykre való konvertálására.
<?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); ?>
Kimenet:
Inches is: 3.94 Feet is: 0.33
3. program: Írjon programot Java nyelven cm-ek lábra és hüvelykre való konvertálására.
// 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); } }
Kimenet:
Inches is: 7.87 Feet is: 0.656
4. program: Írjon programot Python nyelven cm-ek lábra és hüvelykre való konvertálására.
# 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))
Kimenet:
Enter the height in centimeters: 167 The length in feet 5.48 The length in inches 65.8