Infolinks

Breaking

Adsense

Wednesday, January 27, 2016

PHP SQUARE AREA: Solve for the Area of a Square

Hi there! The following tutorial will introduce you to one of the most common problems encountered in programming subjects. Later on, I will provide set of activities and quizzes for you to practice on to improve your programming skills.

Area solver for shapes is just one of the exercises given by most programming instructors. Some other exercises are the following:

1. Celsius to Fahrenheit Temperature Converter
2. Identify if odd or even number
3. Display numbers using a for loop
4. Solve for the area of a triangle
5. Fibonacci Series

and many more. These are just some of the activities that I posted here in my blog. You can visit the links if you want.

Area is the size of the surface of an object. In this article, we will discuss about the formula and php code in solving for the area of a square.

Try PHP Square Area Live here!




Formula Area of Square




a = to the length of the side

PHP Code
<?php
  $a = 5;
  $area = pow($a,2);
  echo "The area of the square with the side of $a is $area";
?>


Output area of square




Thank you for visiting and hope this helps you. Feel free to leave a comment below for any questions. I got some other articles related to php and mysql here in my blog. Watch out for more upcoming tutorials related to blogging and programming. Good day! ^_^

PHP SQUARE AREA: Solve for the Area of a Square

No comments:

Post a Comment

Adbox