Quick actions

cmd+k|ctrl+k

Navigation

Languages

kerucut.php

Snippet info

Language

Php

Visibility

public

Author

zamellia08

Created

2024-09-27T01:48:52.719282Z

Updated

2024-09-27T02:35:37.047408Z

<?php
 
 echo"Inputkan jari jari kerucut:7\n";
 echo"Inputkan tinggi kerucut:8\n";
 echo"Inputkan garis pelukis kerucut:5\n";
 
 $hasil1=3.14*7*7+3.14*7*5;
 echo"Luas permukaan kerucut= $hasil1\n";
 $hasil2=1/3*3.14*7*7*8;
 echo"Volume kerucut= $hasil2\n";
INFO