UVA 12478 - Hardest Problem Ever (Easy) Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { printf("KABIR\n"); return 0; } Read More
How To Make A C/C++ IDE To Run Programs By Java GUI Netbeans Add Comment Edit Download Full Project https://drive.google.com/file/d/0B4aZYdPLCIUYZVI1d3N4QThGREU/view?usp=sharing 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
UVA 10405 - Longest Common Subsequence Add Comment Edit #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 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
UVA 991 - Safe Salutations Add Comment Edit #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 Add Comment Edit #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