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

C++でセンチメートルをメートルとキロメートルに変換するプログラム


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

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

1 m = 100 cm
1 km = 100000 cm

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

アルゴリズム

Start
Step 1 -> Declare variables as centimetre, meter, kilometre
Step 2 -> set centimetre=100
Step 3 -> Set meter = centimeter / 100.0
Step 4 -> Set kilometer = centimeter / 100000.0
Step 5 -> print meter and kilometer
Stop

#include <bits/stdc++.h>
using namespace std;
int main(){
   float centimeter, meter, kilometer;
   centimeter = 300;
   // Converting centimeter into meter and kilometer
   meter = centimeter / 100.0;
   kilometer = centimeter / 100000.0;
   cout << "Length in meter = " << meter << "m" <<endl;
   cout << "Length in Kilometer = " << kilometer << "km"<<endl;
   return 0;
}

出力

Length in meter = 3m
Length in Kilometer = 0.003km

  1. リンクリストをC++のバイナリ検索ツリーに変換するプログラム

    要素が降順ではない順序で配置されている単一リンクリストがあるとすると、それを高さバランスのとれた二分探索木に変換する必要があります。したがって、リストが[-10、-3、0、5、9]のような場合、可能なツリーは-のようになります。 これを解決するには、次の手順に従います- リストが空の場合、 nullを返す sortedListToBST()と呼ばれる再帰メソッドを定義します。これにより、リストの開始ノードが取得されます。 x:=リストaの中間ノードの前のノードのアドレス mid:=正確なミッドノード midの値から取得して、値を持つ新しいノードを作成します nextSta

  2. 華氏を摂氏に変換するC++プログラム

    このプログラムでは、C++を使用して摂氏を華氏に変換する方法を説明します。私たちが知っているように、式は単純です。 アルゴリズム Begin Take the Celsius temperature in C calculate F = (9C/5)+32 return F End サンプルコード #include<iostream> using namespace std; main() { float f, c; cout << "Enter temperature in Celsius: "; cin >>