Quick actions

cmd+k|ctrl+k

Navigation

Languages

oke

Snippet info

Language

Cpp

Visibility

public

Author

emjhee15

Created

2023-10-24T03:35:24.688355Z

Updated

2023-10-31T03:23:21.25827Z

#include <iostream>
using namespace std;

int main() {
    int p = 100;
    int l = 56;
    int luas = p*l;
    cout << "Luas Persegi Panjang adalah  " << luas;
    return 0;
}
INFO