Category: ACM

07
Jan
2015

URI Online Judge Solution | 1002 Area of a Circle

Problem Link:https://www.urionlinejudge.com.br/judge/en/problems/view/1002 Solution: You have to work here with double %lf because if you use float %f…

07
Jan
2015

URI Online Judge Solution | 1002 Area of a Circle

Problem Link:https://www.urionlinejudge.com.br/judge/en/problems/view/1002 Solution: You have to work here with double %lf because if you use float %f…

07
Jan
2015

URI Online Judge Solution | 1001 Extremely Basic

Problem link:https://www.urionlinejudge.com.br/judge/en/problems/view/1001 Solution: Here print endline means print newline that means you have to use \n just…

08
Dec
2014

C code using Euler Method

Problem: Here we have to find dy/dx=x+y where y(0)=1 at the point x=0.05 and x=0.10 taking h=0.05…

01
Dec
2014

Algorithm Presentation

23
Nov
2014

C code for bisection method

The Bisection Method is a numerical method for estimating the roots of a polynomial f(x). It is…