Quick actions

cmd+k|ctrl+k

Navigation

Languages

AlgoritmaTugas1.1

Snippet info

Language

Cpp

Visibility

public

Author

irsyadpurbha.fst

Created

2024-08-20T23:58:06.565914Z

Updated

2024-08-21T00:02:34.57265Z

#include <iostream>
using namespace std;

int main() {
    cout<<"Tabel Band Favorit"<<endl;
    cout<<"-----------------------------------"<<endl;
    cout<<"| No | Nama Band          | Genre |"<<endl;
    cout<<"-----------------------------------"<<endl;
    cout<<"| 1  | Muse               | Rock  |"<<endl;
    cout<<"| 2  | Black Pink         | K-Pop |"<<endl;
    cout<<"| 3  | Reality Club       | Pop   |"<<endl;
    cout<<"-----------------------------------";
    return 0;
}
INFO