Program in PHP to find the sum of first 20 even number
<?php//FrequenTech program in PHP to find the sum of first 20 even numbers//Declaration of classclass AddEvenNumber{ //Declaring three required private…
Start Learning Start Exploring
<?php//FrequenTech program in PHP to find the sum of first 20 even numbers//Declaration of classclass AddEvenNumber{ //Declaring three required private…
a+=b is short-hand for a=a+b (though note that expression a will only be evaluated once)or in another form += is…