Posted inPython 再帰を使用して10進数を2進数に変換するPythonプログラム Posted by By admin January 23, 2021 10進数は、数値を2で連続して除算し、余りを逆の順序で出力することによって2進数に変換されます。 ソースコード # Function to print binary number using recursion def convertToBinary(n): if n >…
Posted inJavascript 単語をアルファベット順に並べ替えるJavaScriptプログラム Posted by By admin January 23, 2021 例:単語をアルファベット順に並べ替える // program to sort words in alphabetical order // take input const string =…
Posted inPython 再帰を使用して数の階乗を見つけるPythonプログラム Posted by By admin January 23, 2021 数値の階乗は、1からその数値までのすべての整数の積です。 たとえば、6の階乗は 1*2*3*4*5*6 = 720。 階乗は負の数に対して定義されておらず、ゼロの階乗は1、0です! = 1。 ソースコード # Factorial of a number using…
Posted inJavascript 文字列が回文であるかどうかをチェックするJavaScriptプログラム Posted by By admin January 23, 2021 文字列は、前方または後方から同じように読み取られた場合、回文です。 例えば、 パパ 前方または後方から同じものを読み取ります。 だから言葉 パパ 回文です。 同様に、 マダム 回文でもあります。 例1:forループを使用して回文を確認する // program to check…
Posted inPython 再帰を使用して自然数の合計を見つけるPythonプログラム Posted by By admin January 23, 2021 以下のプログラムでは、再帰関数を使用しました recur_sum() 指定された数までの合計を計算します。 ソースコード # Python program to find the sum of natural using recursive…
Posted inJavascript 文字のASCII値を見つけるJavaScriptプログラム Posted by By admin January 23, 2021 ASCII を意味する 情報交換用米国標準コード。 ASCII コンピュータが保存および操作するためにさまざまな文字や記号に与えられる数値です。 たとえば、文字のASCII値 「A」 です 65。 資源: JavaScriptの127文字すべてのASCIIチャート。 例1:charCodeAt()を使用した文字のASCII値 // program to…
Posted inPython 再帰を使用してフィボナッチ数列を表示するPythonプログラム Posted by By admin January 23, 2021 フィボナッチ数列は、0、1、1、2、3、5、8 ...の整数列です。 最初の2つの項は0と1です。他のすべての項は、前の2つの項を加算することによって得られます。これは、n番目の項が(n-1)の合計であることを意味します。th および(n-2)th 期間。 ソースコード # Python program to display the Fibonacci sequence def…
Posted inJavascript 10進数を2進数に変換するJavaScriptプログラム Posted by By admin January 23, 2021 例1:10進数を2進数に変換する // program to convert decimal to binary function convertToBinary(x) { let bin = 0;…
Posted inPython カレンダーを表示するPythonプログラム Posted by By admin January 23, 2021 以下のプログラムでは、 calendar モジュール。 内蔵機能 month() モジュール内では、年と月を取り込んで、その年のその月のカレンダーを表示します。 ソースコード # Program to display calendar of the given…
Posted inJavascript 再帰を使用して数の階乗を見つけるJavaScriptプログラム Posted by By admin January 22, 2021 数の階乗は、からのすべての数の積です。 1 その数に。 例えば、 の階乗 5 に等しい 1 * 2 * 3 * 4 *…