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