কম্পিউটার

C++ STL-এ lldiv() ফাংশন


C++ STL-এ lldiv() ফাংশন দুটি সংখ্যার ভাগফল এবং অবশিষ্টাংশের ফলাফল দেয়।

অ্যালগরিদম

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

  1. C++ STL-এ tanh() ফাংশন

  2. C++ STL-এ atanh() ফাংশন

  3. C++ STL-এ cosh() ফাংশন

  4. সি++ এসটিএল-এ sinh() ফাংশন