11
Jan
2015

URI Online Judge Solution | 1013 The Greatest

Solution: I have took help from net.And after taking a look I understood what to do actually….

10
Jan
2015

URI Online Judge Solution| 1012 Area

Problem:https://www.urionlinejudge.com.br/judge/en/problems/view/1012 Solution: Don’t use float as in the problem it is said to use double And hrere…

10
Jan
2015

URI Online Judge Solution| 1011 Sphere

Problem Link: https://www.urionlinejudge.com.br/judge/en/problems/view/1011 Solution: I first tried to do with float but it was not giving me…

09
Jan
2015

URI Online Judge | 1010 Simple Calculate

Problem: https://www.urionlinejudge.com.br/judge/en/problems/view/1010 Solution: Here I have used array and for loop and defines the array index inside…

09
Jan
2015

URI Online Judge Solution | 1009 Salary with Bonus

Problem:https://www.urionlinejudge.com.br/judge/en/problems/view/1009 Solution:First I thought it is about gross margin but after searching in net i have come…

08
Jan
2015

URI Online Judge Solution| 1007 Difference

Problem: https://www.urionlinejudge.com.br/judge/en/problems/view/1007 Solution: #include<stdio.h> int main() { int a,b,c,d,difference; scanf(“%d %d %d %d”,&a,&b,&c,&d); difference=((a*b)-(c*d)); printf(“DIFERENCA = %d\n”,difference);…