Category: URI Online Judge

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() {…

02
Mar
2015

To Carry or not to Carry

Dont forget to use format specifier for unsigned int %u #include<iostream> #include<cstdio> int main() { unsigned int a,b,output;…

11
Feb
2015

URI Online Judge Solution | 1037 Interval

Here is a link http://www.mathsisfun.com/sets/intervals.html Check there about the interval notation section… Interval Notation In “Interval Notation”…

10
Feb
2015

URI Online Judge Solution| 1036 Bhaskara’s Formula

An equation ax2 + bx + c = 0 where a,b and c are any number  and…

10
Feb
2015

URI Online Judge Solution | 1035 Selection Test 1

Hints: Don’t forget to think that A is even so we have to use a%2==0 that’s it…

21
Jan
2015

URI Online Judge Solution | 1020 Age in Days

Solution: Just think simple if we take age input then if we want year then we have…