Quick actions

cmd+k|ctrl+k

Navigation

Languages

Pemrograman Komputer - Pertemuan 5 (2)

Snippet info

Language

Cpp

Visibility

public

Author

fikriansyah.fa07

Created

2023-11-25T09:39:25.10538Z

Updated

2023-11-25T09:39:25.10538Z

#include <iostream>
using namespace std;

//Nama   : Fikriansyah Asyhadi
//NIM    : 3420220003
//Prodi  : Teknik Informatika

int main() {
    int r;
    float phi = 3.14, volume;
    
    printf("volume\n");
    printf("jari-jari : 7.5\n");
    scanf("%d", &r);
    volume = (4/3) * 7.5 * 7.5 * 7.5;
    printf("volume bola : %.f", volume);
    return 0;
}
INFO