lldiv() ฟังก์ชั่นใน C++ STL ให้ผลลัพธ์ของผลหารและส่วนที่เหลือของการหารของตัวเลขทั้งสอง
อัลกอริทึม
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