logo

תוכנית להמרת קילומטר לס'מ

כאן נלמד כיצד להמיר את ערך האורך, שניתן בקילומטר, לאורך בסנטימטר.

אם ברצוננו להמיר את הערך של קילומטר לערך ס'מ, עלינו להשתמש בנוסחה הבאה:

1 ק'מ = 100000 ס'מ. ס'מ = 100000 * ק'מ.

תוכנית 1: כתוב תוכנית ב-C להמרת ערך האורך של קילומטר לסנטימטר.

 #include int main() { double Kilometer = 4; double centimeter; centimeter = 100000 * Kilometer; printf ('Value of 4 kilometer in Centimeter is:', centimeter); return 0; } 

תְפוּקָה:

 Value of 4 kilometer in Centimeter is: 400000 

תוכנית 2: כתוב תוכנית ב-PHP להמרת הערך של קילומטר לס'מ.

 <?php // This is a PHP program which converts the value of Kilometer into the value of cm $Kilometer = 10.4; $centimeter = 100000 * $Kilometer; echo('Value of 10.4 Kilometer in Centimeter is ' . $centimeter . '
'); ?> 

תְפוּקָה:

 Value of 10.4 Kilometer in Centimeter is: 1040000 

תוכנית 3: כתוב תוכנית ב-Java להמרת הערך של Kilometer לס'מ.

 // This is a Java program which converts the value of Kilometer into the value in cm import java.io.*; class convert { static double Conversion_Kilometer_to_cm(int Kilometer) { double centimeter; centimeter = 100000 * Kilometer; System.out.printf(&apos;Value in Centimeter is: %.2f 
&apos;, centimeter); return 0; } public static void main(String args []) { int Kilometer = 2.008457; Conversion_Kilometer_to_cm(Kilometer); } } 

תְפוּקָה:

 Value in Centimeter is: 200845.70 

תוכנית 4: כתוב תוכנית ב- Python להמרת הערך של קילומטר לס'מ.

 # This is a Python program which converts the value of Kilometer into cm Kilometer=int(input(&apos;Enter the length in Kilometer:&apos;)) #convert Kilometer to cm centimeter = 100000 * Kilometer; print(&apos;The length in centimeter&apos;,round(centimeter,2)) 

תְפוּקָה:

 Enter the length in Kilometer: 25 The length in centimeter 2500000.00