logo

برنامج لتحويل سم إلى قدم وبوصة

سنتعلم هنا كيفية تحويل الطول المعطى بالسنتيمتر إلى الطول بالقدم والبوصة.

جافا مولد رقم عشوائي

فيما يلي الصيغتان اللتان تساعدان على تحويل سم إلى قدم وبوصة:

  1. 1 بوصة = 2.54 سنتيمتر
  2. 1 قدم = 30.48 سم

ومن هذه الصيغ نجد الصيغتين التاليتين:

  1. بوصة = 0.3937 * سنتيمتر (سم)
  2. القدم = 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(&apos;Inches is: %.2f 
&apos;, inch); System.out.printf(&apos;Feet is: %.2f&apos;, feet); return 0; } public static void main(String args []) { int centimeter = 20; Conversion_length(centimeter); } } 

انتاج:

 Inches is: 7.87 Feet is: 0.656 

البرنامج 4: اكتب برنامجًا بلغة بايثون لتحويل الطول إلى القدم والبوصة.

 # This is a Python program which converts centimeter length to feet and Inches centimeter=int(input(&apos;Enter the height in centimeters:&apos;)) #convert centimeter to inches inches = 0.394 * centimeter #convert centimeter to feet feet = 0.0328 * centimeter print(&apos;The length in feet&apos;,round(feet,2)) print(&apos;The length in inches&apos;,round(inches,2)) 

انتاج:

 Enter the height in centimeters: 167 The length in feet 5.48 The length in inches 65.8