ডিভিসর এর যোগফল নির্নয় এর আগে ডিভিসর এর সংখ্যা কিভাবে নির্নয় করতে হয় সেই পদ্ধতি জানতে হবে । পূর্বের লেখায় এই সম্পর্কে আলোচনা...
Read More
Home / discrete
Showing posts with label discrete. Show all posts
Showing posts with label discrete. Show all posts
ডিভিসর এর সংখ্যা নির্নয় (Finding Number of Divisors)
ডিভিসর এর সংখ্যা নির্নয় ( Finding Number of Divisors) সাধারনত আমরা কোন সংখ্যার কতগুলো ডিভিসর আছে তা নির্নয় এর জন্য লুপ চালায় কাউন...
Read More
বিগ ইন্টিজার রিমেইন্ডার (Big Integer Remainder)
সাধারনত ইন্টিজার, লং লং ইন্টিজার এর রিমেইন্ডার বের করার সময় আমরা % অপারেটর ব্যবহার করে রিমেইন্ডার বের করি। কিন্তু যদি অনেক বড় সং...
Read More
Find Union And Intersection Of Two Sets in C++
#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
#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
#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
#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
#include<iostream> #include<stdio.h> using namespace std; int main() { int a,b,c,d,carry=1,sum,i,j; scanf("...
Read More
Subscribe to:
Posts
(
Atom
)