Quick actions

cmd+k|ctrl+k

Navigation

Languages

fa'iFahat

Snippet info

Language

Cpp

Visibility

public

Author

emjhee15

Created

2023-10-24T03:35:39.358253Z

Updated

2023-10-31T03:22:42.362607Z

#include <iostream>
using namespace std;

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