Get latest news and Web Designing tutoria

Thursday, 28 May 2015

Floating point numbers in php


A floating point number is one that has a dot in it, like 0.5 and 10.8. You don't need any special syntax to set these types of numbers up. Here's an example for you to try:
<?php
$first_number = 1.2;
$second_number = 2.5;
$sum_total = $second_number + $first_number;
print ($sum_total);
?>
You add up, subtract, divide and multiply these numbers in exactly the same way as the integers you've been using. A warning comes with floating point numbers, though: you shouldn't trust them, if you're after a really, really precise answer!

Some Exercises

To round up this section on number variables, here's a few exercises (In your print statements, there should be no numbers – just variable names):
Exercise
Write a script to add up the following figures: 198, 134, 76. Use a print statement to output your answer.
Exercise
Write a script to add up the following two numbers: 15, 45. Then subtract the answer from 100. Use a print statement to output your answer.
Exercise
Use variables to calculate the answer to the following sum:
(200 * 15) / 10
Use a print statement to output your answer.

Related Posts:

  • The PHP break statement There are times when you need to break out of a loop before the whole thing gets executed. Or, you want to break out of the loop because of an error your user made. In which case, you can use the break statement. Fortu… Read More
  • PHP Do ... While loops This type is loop is almost identical to the while loop except that the condition comes at the end: do statement while (condition) The difference is that your statement gets executed at least once. In a normal while l… Read More
  • PHP For Loops So what’s a loop then? A loop is something that goes round and round. If I told you to move a finger around in a loop, you’d have no problem with the order (unless you have no fingers!) In programming, it’s exactly … Read More
  • PHP While Loops Instead of using a for loop, you have the option to use a while loop. The structure of a while loop is more simple than a for loop, because you’re only evaluating the one condition. The loop goes round and round whi… Read More
  • PHP Arrays You know what a variable is – just a storage area where you hold numbers and text. The problem is, a variable will hold only one value. You can store a single number in a variable, or a single string. An array is like … Read More

0 comments:

Post a Comment