logo

Ohjelma muuntaa cm jalkoihin ja tuumiin

Täällä opimme muuttamaan pituuden, joka annetaan senttimetreinä, pituudeksi jaloissa ja tuumissa.

Seuraavassa on kaksi kaavaa, jotka auttavat muuttamaan cm:t jalkoihin ja tuumiin:

  1. 1 tuuma = 2,54 senttimetriä
  2. 1 jalka = 30,48 senttimetriä

Näistä kaavoista löydämme seuraavat kaksi kaavaa:

seleeni opetusohjelma
  1. tuuma = 0,3937 * senttimetri (cm)
  2. jalat = 0,0328 * senttimetriä (cm)

Ohjelma 1: Kirjoita C-kielellä ohjelma senttimetrien muuntamiseksi jaloiksi ja tuumaksi.

 #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; } 

Lähtö:

laskea erilleen
 Inches is: 15.75 Feet is: 1.31 

Ohjelma 2: Kirjoita PHP:llä ohjelma cm:n muuntamiseksi jaloiksi ja tuumaksi.

 <?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); ?> 

Lähtö:

java math.min
 Inches is: 3.94 Feet is: 0.33 

Ohjelma 3: Kirjoita Java-ohjelma, jolla muunnetaan cm jalkoiksi ja tuumaksi.

 // 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); } } 

Lähtö:

 Inches is: 7.87 Feet is: 0.656 

Ohjelma 4: Kirjoita Pythonissa ohjelma senttimetrien muuntamiseksi jaloiksi ja tuumaksi.

 # 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)) 

Lähtö:

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