Month: February 2016

05
Feb
2016

Uva 1124 – Celebrity jeopardy

#include<cstdio> int main() { char s[100]; while(gets(s)){ printf(“%s\n”,s); } return 0; }  

04
Feb
2016

URI Online Judge Solution | 1332 One-Two-Three | UVA 12289

Reference: https://github.com/deniscostadsc/playground/blob/master/uri/1332/1332.cpp Code: #include<cstdio> #include<cstring> using namespace std; int main() { int n; char s[6]; scanf(“%d”,&n); while(n–){ scanf(“%s”,&s);…

01
Feb
2016

Some Useful Android Fix

Create Credits Screen in Android Basic SQLite C.R.U.D operation in Android Sending data back to parent activity…