Cプログラミング
 Computer >> コンピューター >  >> プログラミング >> Cプログラミング

センチメートルをCのフィートとインチに変換するプログラム


長さをセンチメートルに入力として指定すると、タスクは指定された長さをフィートとインチに変換することです

これには長さ変換式を使用できます-

1 feet = 30.48 cm
1 inche = 2.54 cm

Input-: centimetre = 100
Output -: Length in meter = 3m
   Length in Kilometer = 0.003km

アルゴリズム

Start
Step 1 -> Declare function to perform conversion
   double convert(int centimeter)
      set double inch = 0.3937 * centimetre
      set double feet = 0.0328 * centimetre
      print inch and feet
Step 2 -> In main()
   Declare and set int centimetre=20
   Call convert(centimetre)
Stop
を呼び出します

#include <stdio.h>
// Function to perform conversion
double convert(int centimeter){
   double inch = 0.3937 * centimeter;
   double feet = 0.0328 * centimeter;
   printf ("Inches is: %.2f \n", inch);
   printf ("Feet is: %.2f", feet);
   return 0;
}
// Driver Code
int main() {
   int centimeter = 20;
   convert(centimeter);
   return 0;
}

出力

Inches is: 7.87
Feet is: 0.66

  1. SetをTupleに、TupleをSetに変換するPythonプログラム

    セット構造をタプルに変換し、タプルをセットに変換する必要がある場合は、「tuple」メソッドと「set」メソッドを使用できます。 以下は同じのデモンストレーションです- 例 my_set = {'ab', 'cd', 'ef', 'g', 'h', 's', 'v'} print("The type is : ") print(type(my_set), " ", my_set) print("Converting a set in

  2. 秒を時間、分、秒に変換するPythonプログラム

    この記事では、以下に示す問題ステートメントの解決策について学習します。 問題の説明:時間が与えられているので、秒を時間に、分を秒に変換する必要があります。 以下で説明するように、3つのアプローチがあります- アプローチ1:ブルートフォース方式 例 def convert(seconds):    seconds = seconds % (24 * 3600)    hour = seconds // 3600    seconds %= 3600    minutes = seconds // 60