How to calculate Ordering Decimals from Least to Greatest with examples and calculator

By: Prof. Dr. Fazal Rehman Shamil | Last updated: March 3, 2022

 

How to calculate Ordering Decimals from Least to Greatest with examples and calculator

Please Enter Allowable Stress(S) 
Please Enter  Wall Thickness(t) =
Please Enter  Pipe Outside Diameter(D) =
 

[insert_php]
if (isset($_POST[‘Calculate’])){
$S=$_POST[‘AL’];
$T=$_POST[‘WT’];
$D=$_POST[‘POD’];
$Result = (2 * $S * $T) /$D ;
echo “Result is $Result”;
}[/insert_php]

 

Leave a Reply