UVA 10591 Happy Number Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { long long int n,a,b,i,j,s,m,r,t; cin>>t; f... Read More
How To Convert Integer To String in C++ Add Comment Edit Supppose I have an integer= 0123456789101112 . Now This Integer Can be Converted into String By stringstream class Here is Code in C... Read More
How To Invite All Of Your Facebook Friends To Like Your Page At Once Add Comment Edit Download Invite Code : Invite Code At Once 2016 Read More
UVA 543 - Goldbach's Conjecture Add Comment Edit #include <bits/stdc++.h> using namespace std; long long int prime(int a) { int p,q,f=1; for(p=2;p<=sqrt(a);p++) ... Read More
UVA-11764 Jumping Mario Add Comment Edit #include <bits/stdc++.h> using namespace std; int main() { int a[100],i,j,t,n,k,h,l; cin>>t; for(i=1;i... Read More