#include <bits/stdc++.h> using namespace std; int main() { printf("KABIR\n"); return 0; }
Read More
Home / Archive for April 2016
How To Make A C/C++ IDE To Run Programs By Java GUI Netbeans
Download Full Project https://drive.google.com/file/d/0B4aZYdPLCIUYZVI1d3N4QThGREU/view?usp=sharing
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
UVA 10405 - Longest Common Subsequence
#include <bits/stdc++.h> using namespace std; int t[1005][1005]; int main() { string a,b; char str1[1005],str2[1005]...
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
UVA 991 - Safe Salutations
#include <bits/stdc++.h> using namespace std; int main() { int a[1000],i,j,n,sum,c=0; while(cin>>n) { i...
Read More
UVA-10130 SuperSale
#include <bits/stdc++.h> using namespace std; int main() { int wt[1005],val[1005],W[1005],V[1005][120],w,i,g,t,j,n,k,m;...
Read More
Subscribe to:
Posts
(
Atom
)