כאן נלמד כיצד להמיר את האורך, הנתון בסנטימטר, לאורך ברגליים ובסנטימטרים.
להלן שתי הנוסחאות שעוזרות להמיר ס'מ לרגליים ואינצ'ים:
hashmap ב-java
- 1 אינץ' = 2.54 סנטימטר
- 1 רגל = 30.48 סנטימטר
מנוסחאות אלו, אנו מוצאים את שתי הנוסחאות הבאות:
- אינץ' = 0.3937 * סנטימטר (ס'מ)
- רגל = 0.0328 * סנטימטר (ס'מ)
תוכנית 1: כתוב תוכנית ב-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: כתוב תוכנית ב-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); ?>
תְפוּקָה:
Inches is: 3.94 Feet is: 0.33
תוכנית 3: כתוב תוכנית ב-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: כתוב תוכנית ב-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