PROGRAMMERS
Відкрити в Telegram
Guruh: @Cpp_java_dasturlash Android: @prog_mz_android Quiz bot: @programmersQuiz_bot Portfolio: @ProgrammersPortfolio Reklama: https://t.me/programmers_reklama/2 Kanal uchun taklif: @Mr_Max_Telegram @ZohidAbdullayev
Показати більше962
Підписники
Немає даних24 години
-37 днів
-2030 день
Архів дописів
962
<form action="begin18.php">
<input type="number" name="a"><br>
<input type="number" name="c"><br>
<input type="number" name="b"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$b = $_GET['b'];
$c = $_GET['c'];
$AC = $c - $a;
$BC = $b - $c;
echo 'AC * BC = '.($AC * $BC);
}
?>
962
<form action="begin17.php">
<input type="number" name="a"><br>
<input type="number" name="b"><br>
<input type="number" name="c"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$b = $_GET['b'];
$c = $_GET['c'];
$AC = $c - $a;
$BC = $c - $b;
echo 'AC = '.$AC."<br>";
echo 'BC = '.$BC."<br>";
echo 'AC + BC = '.($AC + $BC)."<br>";
}
?>
962
<form action="begin15.php">
<input type="number" name="S"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$S = $_GET['S'];
$R = ($S / (3.14))**(1/2);
echo 'R = '.$R."<br>";
echo 'd = '.(2*$R)."<br>";
}
?>
962
<form action="begin14.php">
<input type="number" name="L"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$L = $_GET['L'];
$R = $L /(2 * 3.14);
$S = 3.14 * $R**2;
echo 'R = '.$R."<br>";
echo 'S = '.$S."<br>";
}
?>
962
<form action="begin13.php">
<input type="number" name="r"><br>
<input type="number" name="R"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$r = $_GET['r'];
$R = $_GET['R'];
$S1 = 3.14 * $r*$r;
$S2 = 3.14 * $R*$R;
$S3 = $S2 - $S1;
echo 'r = '.$r."<br>";
echo 'R = '.$R."<br>";
echo 'S1 = '.$S1."<br>";
echo 'S2 = '.$S2."<br>";
echo 'S3 = '.$S3."<br>";
}
?>
962
<form action="begin12.php">
<input type="number" name="a"><br>
<input type="number" name="b"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$b = $_GET['b'];
$m = $a*$a + $b*$b;
$c = pow($m, (1/2));
$P = ($a + $b + $c);
echo 'Gipotenuza = '.$c."<br>";
echo 'Perimetr = '.$P."<br>";
}
?>
962
";
echo $b.' ning moduli = '.abs($b)."
"; echo 'Yig`indisi = '.$s."
"; echo 'Ko`paytmasi = '.$p."
"; } ?>
"; echo 'Yig`indisi = '.$s."
"; echo 'Ko`paytmasi = '.$p."
"; } ?>
962
";
echo $b.' ning kvadrati = '.($b**2)."
"; echo 'Yig`indisi = '.$s."
"; echo 'Ko`paytmasi = '.$p."
"; } ?>
"; echo 'Yig`indisi = '.$s."
"; echo 'Ko`paytmasi = '.$p."
"; } ?>
962
<form action="begin7.php">
<input type="number" name="r"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$r = $_GET['r'];
$p = 3.14;
$L = 2 * $p * $r;
$S = $p * $r**2;
echo "Doira radiusi = ".$r."<br>";
echo 'Uzunligi = '.$L."<br>";
echo 'Yuzasi = '.$S;
}
?>
962
<form action="begin6.php">
<input type="number" name="a"><br>
<input type="number" name="b"><br>
<input type="number" name="c"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$b = $_GET['b'];
$c = $_GET['c'];
$V = $a * $b * $c;
$S = 2 * ($a * $b + $a * $c + $b * $c);
echo "Paralelepepid tomonlari = ".$a.", ". $b.", ".$c.", "."<br>";
echo 'Xajmi = '.$V." ".' Yuzasi = '.$S;
}
?>
962
<form action="begin5.php">
<input type="number" name="a"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$V = $a**3;
$S = 6 * $a;
echo "Kubning tomoni = ".$a."<br>";
echo 'Xajmi = '.$V." ".' Yuzasi = '.$S;
}
?>
962
<form action="begin4.php">
<input type="number" name="d"><br>
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$d = $_GET['d'];
$p = 3.14;
$L = $p * $d;
echo 'Uzunlik = '.$L;
}
?>
962
<form action="begin3.php">
<input type="number" name="a"><br>
<input type="number" name="b">
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$b = $_GET['b'];
$S = $a * $b;
$P = 2 * ($a + $b);
echo 'Yuza = '.$S.'<br>';
echo 'Perimetr = '.$P;
}
?>
962
<form action="begin2.php">
<input type="number" name="a">
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$S = $a**2;
echo 'Yuza = '.$S;
}
?>
962
<form action="begin3.php">
<input type="number" name="a"><br>
<input type="number" name="b">
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$b = $_GET['b'];
$S = $a * $b;
$P = 2 * ($a + $b);
echo 'Yuza = '.$S.'<br>';
echo 'Perimetr = '.$P;
}
?>
962
<form action="begin2.php">
<input type="number" name="a">
<input type="submit" name = "s1" value="Send">
</form>
<?php
if(isset($_GET['s1'])){
$a = $_GET['a'];
$S = $a**2;
echo 'Yuza = '.$S;
}
?>
962
Premyeramiz o'z nihoyasiga yetdi. Agar siz premyerani ko'ra olmagan bo'lsangiz quyidagi havola orqali ko'rishingiz mumkin
videodarslikni ko'rish
Viktorina bot | Telegram | Youtube
Вже доступно! Дослідження Telegram за 2025 — головні інсайти року 
