ডিভিসর এর যোগফল নির্নয় (Finding Sum Of Divisors) Add Comment Edit ডিভিসর এর যোগফল নির্নয় এর আগে ডিভিসর এর সংখ্যা কিভাবে নির্নয় করতে হয় সেই পদ্ধতি জানতে হবে । পূর্বের লেখায় এই সম্পর্কে আলোচনা... Read More
ডিভিসর এর সংখ্যা নির্নয় (Finding Number of Divisors) 3 Comments Edit ডিভিসর এর সংখ্যা নির্নয় ( Finding Number of Divisors) সাধারনত আমরা কোন সংখ্যার কতগুলো ডিভিসর আছে তা নির্নয় এর জন্য লুপ চালায় কাউন... Read More
বিগ ইন্টিজার রিমেইন্ডার (Big Integer Remainder) Add Comment Edit সাধারনত ইন্টিজার, লং লং ইন্টিজার এর রিমেইন্ডার বের করার সময় আমরা % অপারেটর ব্যবহার করে রিমেইন্ডার বের করি। কিন্তু যদি অনেক বড় সং... Read More
Find Union And Intersection Of Two Sets in C++ Add Comment Edit #include <iostream> #include <bits/stdc++.h> using namespace std; int main() { bool U[36],A[36],B[36]; int... Read More
How To Divide Two Number Without Divide / Operator Add Comment Edit #include <iostream> #include <bits/stdc++.h> using namespace std; int add(int a, int b) { int carry=1,sum; while(c... Read More
How To Multiply Two Number Without Multiply * Operator Add Comment Edit #include <iostream> #include <bits/stdc++.h> using namespace std; int mul(int a, int b) { int carry=1,sum; whi... Read More
How To Subtract Two Number Without Minus - Operator 1 Comment Edit #include<iostream> #include<stdio.h> using namespace std; int main() { int a,b,carry=1,sum; scanf("%d %d",... Read More
How To Add Two Number Without Plus + Operator Add Comment Edit #include<iostream> #include<stdio.h> using namespace std; int main() { int a,b,c,d,carry=1,sum,i,j; scanf(... Read More