cd ..
root@paste:~/W84Tpns4O$cat paste
paste://W84Tpns4OPUBLIC
public paste

Program untuk Menghitung Volume Bola (VolumeBola.java)

142 views403 chars

stdout

Paste content

>_cppauto-detected
public class VolumeBola
{
    public static void main(String[] args)
    {
        double r = 7.5; // Jari-jari bola
        double volume;  // Untuk menyimpan hasil penghitungan volume bola
    
        // [1] Hitung volume bola
        volume = 4.0 / 3 * Math.PI * Math.pow(r, 3);


        // [2] Tampilkan volume bola
        System.out.printf("Volume bola = %.13f", volume);

    }
}

$ tail -f comments.log

Comments [0]

// no comments yet