Category: A ll Codes

01
Aug
2015

URI Online Judge Solution | 1040 – Average 3

Keep check on the line “Calculate the average with weights 2,3,4 e 1” actually that means you…

28
Jul
2015

URI Online Judge Solution |1038 Snack

Here I tried to write everything in standard C++ #include<iostream> #include<iomanip> using namespace std; int main() {…

28
Jul
2015

c++ precision

C++ precision example: #include<iostream> #include<iomanip> using namespace std; int main() { double f; f=3.12159; cout<<f<<‘\n’; cout<<setprecision(3)<<f<<endl; cout<<setprecision(5)<<f<<endl;…

25
Jul
2015

Odd Even in Bash/Shell Scripting

I tried it so many times but it didn’t gave the solution but the code I have…

25
Jul
2015

XML

XML is a language to describe the data   I have practiced here <root> <child attributes=”name”> <subchild1></subchild1>…

24
Jul
2015

Android A to Z

Here i am going to describe all the basic to advanced android experience I have learned …I…