Ici, nous allons apprendre comment convertir la longueur, donnée en centimètres, en longueur en pieds et en pouces.
Voici les deux formules qui permettent de convertir les cm en pieds et en pouces :
- 1 pouce = 2,54 centimètres
- 1 pied = 30,48 centimètres
De ces formules, on retrouve les deux formules suivantes :
- pouce = 0,3937 * Centimètre (cm)
- pieds = 0,0328 * Centimètre (cm)
Programme 1 : Écrivez un programme en C pour convertir les cm en pieds et en pouces.
#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; }
Sortir:
Inches is: 15.75 Feet is: 1.31
Programme 2 : Écrivez un programme en PHP pour convertir les cm en pieds et en pouces.
<?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); ?>
Sortir:
Inches is: 3.94 Feet is: 0.33
Programme 3 : Écrivez un programme en Java pour convertir des cm en pieds et en pouces.
// 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); } }
Sortir:
Inches is: 7.87 Feet is: 0.656
Programme 4 : Écrivez un programme en Python pour convertir des cm en pieds et en pouces.
# 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))
Sortir:
Enter the height in centimeters: 167 The length in feet 5.48 The length in inches 65.8