C ++ STLのlldiv()関数
C ++ STLのlldiv()関数は、商と2つの数値の除算の余りの結果を提供します。
アルゴリズム
Begin Take two long type numbers as input. Call function lldiv(). Print the quotient and remainder. End.
サンプルコード
#include <cstdlib> #include <iostream> using namespace std; int main() { long long q = 500LL; long long r = 25LL; lldiv_t res = lldiv(q, r); cout << "Quotient of " << q << "/" << r << " = " << res.quot << endl; cout << "Remainder of " << r << "/" << r << " = " << res.rem << endl; return 0; }
出力
Quotient of 500/25 = 20 Remainder of 25/25 = 0
-
C ++ STLのcosh()関数
cosh()関数は、ラジアンで指定された角度の双曲線正弦を返します。これはC++STLに組み込まれている関数です。 cosh()関数の構文は次のとおりです。 cosh(var) 構文からわかるように、関数cosh()は、データ型float、double、またはlongdoubleのパラメーターvarを受け入れます。 varの双曲線コサインを返します。 C ++でcosh()を示すプログラムは次のとおりです- 例 #include <iostream> #include <cmath> using namespace std; int main() {
-
C ++ STLのsinh()関数
sinh()関数は、ラジアンで指定された角度の双曲線正弦を返します。これはC++STLに組み込まれている関数です。 sinh()関数の構文は次のとおりです。 sinh(var) 構文からわかるように、関数sinh()は、データ型float、double、またはlongdoubleのパラメーターvarを受け入れます。 varの双曲線サインを返します。 C ++でsinh()を示すプログラムは次のとおりです。 例 #include <iostream> #include <cmath> using namespace std; int main() {